41SOFIAPUBFUN char const *http_status_phrase(
int status);
43#define HTTP_100_CONTINUE 100, http_100_continue
44#define HTTP_101_SWITCHING 101, http_101_switching
45#define HTTP_200_OK 200, http_200_ok
46#define HTTP_201_CREATED 201, http_201_created
47#define HTTP_202_ACCEPTED 202, http_202_accepted
48#define HTTP_203_NON_AUTH_INFO 203, http_203_non_auth_info
49#define HTTP_204_NO_CONTENT 204, http_204_no_content
50#define HTTP_205_RESET_CONTENT 205, http_205_reset_content
51#define HTTP_206_PARTIAL_CONTENT 206, http_206_partial_content
52#define HTTP_300_MULTIPLE_CHOICES 300, http_300_multiple_choices
53#define HTTP_301_MOVED_PERMANENTLY 301, http_301_moved_permanently
54#define HTTP_302_FOUND 302, http_302_found
55#define HTTP_303_SEE_OTHER 303, http_303_see_other
56#define HTTP_304_NOT_MODIFIED 304, http_304_not_modified
57#define HTTP_305_USE_PROXY 305, http_305_use_proxy
58#define HTTP_307_TEMPORARY_REDIRECT 307, http_307_temporary_redirect
59#define HTTP_400_BAD_REQUEST 400, http_400_bad_request
60#define HTTP_401_UNAUTHORIZED 401, http_401_unauthorized
61#define HTTP_402_PAYMENT_REQUIRED 402, http_402_payment_required
62#define HTTP_403_FORBIDDEN 403, http_403_forbidden
63#define HTTP_404_NOT_FOUND 404, http_404_not_found
64#define HTTP_405_NOT_ALLOWED 405, http_405_not_allowed
65#define HTTP_406_NOT_ACCEPTABLE 406, http_406_not_acceptable
66#define HTTP_407_PROXY_AUTH 407, http_407_proxy_auth
67#define HTTP_408_TIMEOUT 408, http_408_timeout
68#define HTTP_409_CONFLICT 409, http_409_conflict
69#define HTTP_410_GONE 410, http_410_gone
70#define HTTP_411_NO_LENGTH 411, http_411_no_length
71#define HTTP_412_PRECONDITION 412, http_412_precondition
72#define HTTP_413_ENTITY_TOO_LARGE 413, http_413_entity_too_large
73#define HTTP_414_URI_TOO_LONG 414, http_414_uri_too_long
74#define HTTP_415_MEDIA_TYPE 415, http_415_media_type
75#define HTTP_416_REQUESTED_RANGE 416, http_416_requested_range
76#define HTTP_417_EXPECTATION 417, http_417_expectation
77#define HTTP_426_UPGRADE 426, http_426_upgrade
78#define HTTP_500_INTERNAL_SERVER 500, http_500_internal_server
79#define HTTP_501_NOT_IMPLEMENTED 501, http_501_not_implemented
80#define HTTP_502_BAD_GATEWAY 502, http_502_bad_gateway
81#define HTTP_503_NO_SERVICE 503, http_503_no_service
82#define HTTP_504_GATEWAY_TIMEOUT 504, http_504_gateway_timeout
83#define HTTP_505_HTTP_VERSION 505, http_505_http_version
100SOFIAPUBVAR char const http_307_temporary_redirect[];