diff options
author | nocomer <nocomer@yandex-team.com> | 2023-05-12 11:33:09 +0300 |
---|---|---|
committer | nocomer <nocomer@yandex-team.com> | 2023-05-12 11:33:09 +0300 |
commit | d28ab6e3a75f71386699d29e7b830857c0300a68 (patch) | |
tree | d690a07511e81e4a903a477c6b7ac8c5b8bcd556 /library/cpp/http/misc/httpcodes.cpp | |
parent | 09a0e89ee46154785b0acf72f3aa760f4350d21e (diff) | |
download | ydb-d28ab6e3a75f71386699d29e7b830857c0300a68.tar.gz |
RFC 8297 (Early Hints) initial support in balancer
Diffstat (limited to 'library/cpp/http/misc/httpcodes.cpp')
-rw-r--r-- | library/cpp/http/misc/httpcodes.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/library/cpp/http/misc/httpcodes.cpp b/library/cpp/http/misc/httpcodes.cpp index ad8c80ac1e..89d3094c49 100644 --- a/library/cpp/http/misc/httpcodes.cpp +++ b/library/cpp/http/misc/httpcodes.cpp @@ -8,6 +8,8 @@ TStringBuf HttpCodeStrEx(int code) noexcept { return TStringBuf("101 Switching protocols"); case HTTP_PROCESSING: return TStringBuf("102 Processing"); + case HTTP_EARLY_HINTS: + return TStringBuf ("103 Early Hints"); case HTTP_OK: return TStringBuf("200 Ok"); |