aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/http
diff options
context:
space:
mode:
authorsvshevtsov <svshevtsov@yandex-team.ru>2022-02-10 16:49:37 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:49:37 +0300
commit657337012a264721d58c470b4e9e796611f3c492 (patch)
tree82753fd92cf7cc2dea4e522a945ed570131f920b /library/cpp/http
parent44f31b316af517a4fbc6a82ebed8a1c51807deac (diff)
downloadydb-657337012a264721d58c470b4e9e796611f3c492.tar.gz
Restoring authorship annotation for <svshevtsov@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'library/cpp/http')
-rw-r--r--library/cpp/http/misc/httpcodes.h12
-rw-r--r--library/cpp/http/misc/ya.make4
-rw-r--r--library/cpp/http/server/http.cpp8
-rw-r--r--library/cpp/http/server/http.h2
-rw-r--r--library/cpp/http/server/options.cpp2
-rw-r--r--library/cpp/http/server/options.h4
6 files changed, 16 insertions, 16 deletions
diff --git a/library/cpp/http/misc/httpcodes.h b/library/cpp/http/misc/httpcodes.h
index cbfbaa1188..87175019f9 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 fceb3cf79c..e0f2fb42ea 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
diff --git a/library/cpp/http/server/http.cpp b/library/cpp/http/server/http.cpp
index 128583bdd7..dca5c828cf 100644
--- a/library/cpp/http/server/http.cpp
+++ b/library/cpp/http/server/http.cpp
@@ -212,7 +212,7 @@ public:
void Wait() {
Cb_->OnWait();
- TGuard<TMutex> g(StopMutex);
+ TGuard<TMutex> g(StopMutex);
if (ListenThread) {
ListenThread->Join();
ListenThread.Reset(nullptr);
@@ -222,7 +222,7 @@ public:
void Stop() {
Shutdown();
- TGuard<TMutex> g(StopMutex);
+ TGuard<TMutex> g(StopMutex);
if (ListenThread) {
ListenThread->Join();
ListenThread.Reset(nullptr);
@@ -457,7 +457,7 @@ public:
ICallBack* Cb_ = nullptr;
THttpServer* Parent_ = nullptr;
TWakeupPollAble WakeupPollAble;
- TMutex StopMutex;
+ TMutex StopMutex;
private:
template <class TThreadPool_>
@@ -629,7 +629,7 @@ bool TClientRequest::Reply(void* /*ThreadSpecificResource*/) {
return true;
}
-bool TClientRequest::IsLocal() const {
+bool TClientRequest::IsLocal() const {
return HasLocalAddress(Socket());
}
diff --git a/library/cpp/http/server/http.h b/library/cpp/http/server/http.h
index b292d38f27..2a9f6c0872 100644
--- a/library/cpp/http/server/http.h
+++ b/library/cpp/http/server/http.h
@@ -122,7 +122,7 @@ public:
NAddr::IRemoteAddrRef GetListenerSockAddrRef() const noexcept;
TInstant AcceptMoment() const noexcept;
- bool IsLocal() const;
+ bool IsLocal() const;
bool CheckLoopback();
void ProcessFailRequest(int failstate);
diff --git a/library/cpp/http/server/options.cpp b/library/cpp/http/server/options.cpp
index 05c954384a..50137572cb 100644
--- a/library/cpp/http/server/options.cpp
+++ b/library/cpp/http/server/options.cpp
@@ -38,6 +38,6 @@ void THttpServerOptions::BindAddresses(TBindAddresses& ret) const {
}
if (ret.empty()) {
- ret.push_back(Host ? TNetworkAddress(Host, Port) : TNetworkAddress(Port));
+ ret.push_back(Host ? TNetworkAddress(Host, Port) : TNetworkAddress(Port));
}
}
diff --git a/library/cpp/http/server/options.h b/library/cpp/http/server/options.h
index 38eda0e5e7..31214de4c5 100644
--- a/library/cpp/http/server/options.h
+++ b/library/cpp/http/server/options.h
@@ -68,14 +68,14 @@ public:
return *this;
}
- /// Default interface name to bind the server. Used when none of BindAddress are provided.
+ /// Default interface name to bind the server. Used when none of BindAddress are provided.
inline THttpServerOptions& SetHost(const TString& host) noexcept {
Host = host;
return *this;
}
- /// Default port to bind the server. Used when none of BindAddress are provided.
+ /// Default port to bind the server. Used when none of BindAddress are provided.
inline THttpServerOptions& SetPort(ui16 port) noexcept {
Port = port;