aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/http/server/http.h
diff options
context:
space:
mode:
authorVlad Yaroslavlev <vladon@vladon.com>2022-02-10 16:46:25 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:46:25 +0300
commit344ea37b4a345701ab0e67de2266a1c1bd7baf2d (patch)
tree1a2c5ffcf89eb53ecd79dbc9bc0a195c27404d0c /library/cpp/http/server/http.h
parent706b83ed7de5a473436620367af31fc0ceecde07 (diff)
downloadydb-344ea37b4a345701ab0e67de2266a1c1bd7baf2d.tar.gz
Restoring authorship annotation for Vlad Yaroslavlev <vladon@vladon.com>. Commit 2 of 2.
Diffstat (limited to 'library/cpp/http/server/http.h')
-rw-r--r--library/cpp/http/server/http.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/library/cpp/http/server/http.h b/library/cpp/http/server/http.h
index e36a27ca25..b292d38f27 100644
--- a/library/cpp/http/server/http.h
+++ b/library/cpp/http/server/http.h
@@ -23,7 +23,7 @@ public:
public:
struct TFailLogData {
int failstate;
- TString url;
+ TString url;
};
virtual ~ICallBack() {
@@ -80,7 +80,7 @@ public:
int GetErrorCode();
const char* GetError();
void RestartRequestThreads(ui32 nTh, ui32 maxQS);
- const TOptions& Options() const noexcept;
+ const TOptions& Options() const noexcept;
i64 GetClientCount() const;
class TImpl;
@@ -109,16 +109,16 @@ public:
TClientRequest();
~TClientRequest() override;
- inline THttpInput& Input() noexcept {
+ inline THttpInput& Input() noexcept {
return *HttpConn_->Input();
}
- inline THttpOutput& Output() noexcept {
+ inline THttpOutput& Output() noexcept {
return *HttpConn_->Output();
}
- THttpServer* HttpServ() const noexcept;
- const TSocket& Socket() const noexcept;
+ THttpServer* HttpServ() const noexcept;
+ const TSocket& Socket() const noexcept;
NAddr::IRemoteAddrRef GetListenerSockAddrRef() const noexcept;
TInstant AcceptMoment() const noexcept;
@@ -140,8 +140,8 @@ private:
void Process(void* ThreadSpecificResource) override;
public:
- TVector<std::pair<TString, TString>> ParsedHeaders;
- TString RequestString;
+ TVector<std::pair<TString, TString>> ParsedHeaders;
+ TString RequestString;
private:
THolder<TClientConnection> Conn_;