diff options
Diffstat (limited to 'library/cpp/http/misc/httpcodes.h')
-rw-r--r-- | library/cpp/http/misc/httpcodes.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/library/cpp/http/misc/httpcodes.h b/library/cpp/http/misc/httpcodes.h index e655dd5bd1..cbfbaa1188 100644 --- a/library/cpp/http/misc/httpcodes.h +++ b/library/cpp/http/misc/httpcodes.h @@ -75,20 +75,20 @@ enum HttpCodes { HTTP_CODE_MAX }; -TStringBuf HttpCodeStrEx(int code) noexcept; +TStringBuf HttpCodeStrEx(int code) noexcept; -inline TStringBuf HttpCodeStr(int code) noexcept { +inline TStringBuf HttpCodeStr(int code) noexcept { return HttpCodeStrEx(code).Skip(4); } -inline bool IsHttpCode(int code) noexcept { +inline bool IsHttpCode(int code) noexcept { return HttpCodeStrEx(code).data() != HttpCodeStrEx(0).data(); } -inline bool IsUserError(int code) noexcept { +inline bool IsUserError(int code) noexcept { return code >= 400 && code < 500; } -inline bool IsServerError(int code) noexcept { +inline bool IsServerError(int code) noexcept { return code >= 500; } |