@@ -21,6 +21,9 @@ DAT(NonAuthInfo, 203, _XPLATSTR("Non-Authoritative Information"))
21
21
DAT(NoContent, 204, _XPLATSTR("No Content"))
22
22
DAT(ResetContent, 205, _XPLATSTR("Reset Content"))
23
23
DAT(PartialContent, 206, _XPLATSTR("Partial Content"))
24
+ DAT(MultiStatus, 207, _XPLATSTR("Multi-Status"))
25
+ DAT(AlreadyReported, 208, _XPLATSTR("Already Reported"))
26
+ DAT(IMUsed, 226, _XPLATSTR("IM Used"))
24
27
DAT(MultipleChoices, 300, _XPLATSTR("Multiple Choices"))
25
28
DAT(MovedPermanently, 301, _XPLATSTR("Moved Permanently"))
26
29
DAT(Found, 302, _XPLATSTR("Found"))
@@ -47,13 +50,26 @@ DAT(RequestUriTooLarge, 414, _XPLATSTR("Request Uri Too Large"))
47
50
DAT(UnsupportedMediaType, 415, _XPLATSTR("Unsupported Media Type"))
48
51
DAT(RangeNotSatisfiable, 416, _XPLATSTR("Requested range not satisfiable"))
49
52
DAT(ExpectationFailed, 417, _XPLATSTR("Expectation Failed"))
53
+ DAT(MisdirectedRequest, 421, _XPLATSTR("Misdirected Request"))
54
+ DAT(UnprocessableEntity, 422, _XPLATSTR(Unprocessable Entity"))
55
+ DAT(Locked, 423, _XPLATSTR(Locked"))
56
+ DAT(FailedDependency, 424, _XPLATSTR(Failed Dependency"))
57
+ DAT(UpgradeRequired, 426, _XPLATSTR(Upgrade Required"))
58
+ DAT(PreconditionRequired, 428, _XPLATSTR(Precondition Required"))
50
59
DAT(TooManyRequests, 429, _XPLATSTR("Too Many Requests"))
60
+ DAT(RequestHeaderFieldsTooLarge, 431, _XPLATSTR("Request Header Fields Too Large"))
61
+ DAT(UnavailableForLegalReasons, 451, _XPLATSTR("Unavailable For Legal Reasons"))
51
62
DAT(InternalError, 500, _XPLATSTR("Internal Error"))
52
63
DAT(NotImplemented, 501, _XPLATSTR("Not Implemented"))
53
64
DAT(BadGateway, 502, _XPLATSTR("Bad Gateway"))
54
65
DAT(ServiceUnavailable, 503, _XPLATSTR("Service Unavailable"))
55
66
DAT(GatewayTimeout, 504, _XPLATSTR("Gateway Time-out"))
56
67
DAT(HttpVersionNotSupported, 505, _XPLATSTR("HTTP Version not supported"))
68
+ DAT(VariantAlsoNegotiates, 506, _XPLATSTR("Variant Also Negotiates"))
69
+ DAT(InsufficientStorage, 507, _XPLATSTR("Insufficient Storage"))
70
+ DAT(LoopDetected, 508, _XPLATSTR("Loop Detected"))
71
+ DAT(NotExtended, 510, _XPLATSTR("Not Extended"))
72
+ DAT(NetworkAuthenticationRequired, 511, _XPLATSTR("Network Authentication Required"))
57
73
#endif // _PHRASES
58
74
59
75
#ifdef _HEADER_NAMES
0 commit comments