We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent403f659 commitafb1971Copy full SHA for afb1971
boost/network/protocol/http/impl/response.ipp
@@ -45,6 +45,7 @@ namespace boost { namespace network { namespace http {
45
partial_content =206,
46
multiple_choices =300,
47
moved_permanently =301,
48
+ moved_temporarily =302,///< \deprecated Not HTTP standard
49
found =302,
50
see_other =303,
51
not_modified =304,
@@ -56,6 +57,7 @@ namespace boost { namespace network { namespace http {
56
57
payment_required =402,
58
forbidden =403,
59
not_found =404,
60
+ not_supported =405,///< \deprecated Not HTTP standard
61
method_not_allowed =405,
62
not_acceptable =406,
63
proxy_authentication_required =407,
@@ -67,6 +69,7 @@ namespace boost { namespace network { namespace http {
67
69
request_entity_too_large =413,
68
70
request_uri_too_large =414,
71
unsupported_media_type =415,
72
+ unsatisfiable_range =416,///< \deprecated Not HTTP standard
73
requested_range_not_satisfiable =416,
74
expectation_failed =417,
75
precondition_required =428,