diff options
author | zankin <zankin@yandex-team.com> | 2024-11-10 22:12:21 +0300 |
---|---|---|
committer | zankin <zankin@yandex-team.com> | 2024-11-10 22:22:55 +0300 |
commit | 856bb0a466b6756dc24c0a41113ffb7b4283e209 (patch) | |
tree | c4a5b9be16d30bad7d451f286abc337e19ea6c67 | |
parent | dc0f15601f0a9a72abf93036aadff4d257a96f52 (diff) | |
download | ydb-856bb0a466b6756dc24c0a41113ffb7b4283e209.tar.gz |
[library/cpp/http] support HTTP 434 code
add constant for HTTP 434 code
commit_hash:bb04bc4efd36dc9989de7535b40c968c69b27472
-rw-r--r-- | library/cpp/http/misc/httpcodes.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/library/cpp/http/misc/httpcodes.h b/library/cpp/http/misc/httpcodes.h index 4565b1c581..b9407ec8ee 100644 --- a/library/cpp/http/misc/httpcodes.h +++ b/library/cpp/http/misc/httpcodes.h @@ -57,6 +57,7 @@ enum HttpCodes { HTTP_PRECONDITION_REQUIRED = 428, HTTP_TOO_MANY_REQUESTS = 429, HTTP_REQUEST_HEADER_FIELDS_TOO_LARGE = 431, + HTTP_REQUESTED_HOST_UNAVAILABLE = 434, HTTP_UNAVAILABLE_FOR_LEGAL_REASONS = 451, HTTP_INTERNAL_SERVER_ERROR = 500, |