3 //=============================================================================
7 * @author Douglas C. Schmidt <d.schmidt@vanderbilt.edu>
9 //=============================================================================
15 #include "ace/config-all.h"
17 #if !defined (ACE_LACKS_PRAGMA_ONCE)
19 #endif /* ACE_LACKS_PRAGMA_ONCE */
31 STATUS_ACCEPTED
= 202,
32 STATUS_NO_CONTENT
= 204,
33 STATUS_MOVED_PERMANENTLY
= 301,
34 STATUS_MOVED_TEMPORARILY
= 302,
35 STATUS_NOT_MODIFIED
= 304,
36 STATUS_BAD_REQUEST
= 400,
37 STATUS_UNAUTHORIZED
= 401,
38 STATUS_FORBIDDEN
= 403,
39 STATUS_ITEM_NOT_FOUND
= 404,
40 STATUS_INTERNAL_SERVER_ERROR
= 500,
41 STATUS_OP_NOT_IMPLEMENTED
= 501,
42 STATUS_BAD_GATEWAY
= 502,
43 STATUS_SERVICE_UNAVAILABLE
= 503,
44 STATUS_INSUFFICIENT_DATA
= 399
47 URL_Status (STATUS_CODE
= STATUS_INSUFFICIENT_DATA
);
48 URL_Status (const URL_Status
&);
50 STATUS_CODE
status () const;
52 void status (STATUS_CODE
);
58 #endif /* _URL_STATUS_H */