diff options
author | svshevtsov <svshevtsov@yandex-team.ru> | 2022-02-10 16:49:37 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:49:37 +0300 |
commit | de89752358147d7b25ef59a85b431bb564068a49 (patch) | |
tree | 5d5cb817648f650d76cf1076100726fd9b8448e8 /library/cpp/http/misc | |
parent | 657337012a264721d58c470b4e9e796611f3c492 (diff) | |
download | ydb-de89752358147d7b25ef59a85b431bb564068a49.tar.gz |
Restoring authorship annotation for <svshevtsov@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'library/cpp/http/misc')
-rw-r--r-- | library/cpp/http/misc/httpcodes.h | 12 | ||||
-rw-r--r-- | library/cpp/http/misc/ya.make | 4 |
2 files changed, 8 insertions, 8 deletions
diff --git a/library/cpp/http/misc/httpcodes.h b/library/cpp/http/misc/httpcodes.h index 87175019f9f..cbfbaa1188d 100644 --- a/library/cpp/http/misc/httpcodes.h +++ b/library/cpp/http/misc/httpcodes.h @@ -84,11 +84,11 @@ inline TStringBuf HttpCodeStr(int code) noexcept { inline bool IsHttpCode(int code) noexcept { return HttpCodeStrEx(code).data() != HttpCodeStrEx(0).data(); } - + inline bool IsUserError(int code) noexcept { - return code >= 400 && code < 500; -} - + return code >= 400 && code < 500; +} + inline bool IsServerError(int code) noexcept { - return code >= 500; -} + return code >= 500; +} diff --git a/library/cpp/http/misc/ya.make b/library/cpp/http/misc/ya.make index e0f2fb42ead..fceb3cf79c0 100644 --- a/library/cpp/http/misc/ya.make +++ b/library/cpp/http/misc/ya.make @@ -5,8 +5,8 @@ OWNER( mvel ) -GENERATE_ENUM_SERIALIZATION(httpcodes.h) - +GENERATE_ENUM_SERIALIZATION(httpcodes.h) + SRCS( httpcodes.cpp httpdate.cpp |