diff options
Diffstat (limited to 'library/cpp/http/server/http.cpp')
| -rw-r--r-- | library/cpp/http/server/http.cpp | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/library/cpp/http/server/http.cpp b/library/cpp/http/server/http.cpp index f1d0fcc3a17..128583bdd70 100644 --- a/library/cpp/http/server/http.cpp +++ b/library/cpp/http/server/http.cpp @@ -771,7 +771,7 @@ THttpServer* TClientRequest::HttpServ() const noexcept { const TSocket& TClientRequest::Socket() const noexcept { return Conn_->Socket_; } - + NAddr::IRemoteAddrRef TClientRequest::GetListenerSockAddrRef() const noexcept { return Conn_->ListenerSockAddrRef_; } @@ -780,21 +780,21 @@ TInstant TClientRequest::AcceptMoment() const noexcept { return Conn_->AcceptMoment; } -/* - * TRequestReplier - */ -TRequestReplier::TRequestReplier() { -} - -TRequestReplier::~TRequestReplier() { -} - -bool TRequestReplier::Reply(void* threadSpecificResource) { - const TReplyParams params = { +/* + * TRequestReplier + */ +TRequestReplier::TRequestReplier() { +} + +TRequestReplier::~TRequestReplier() { +} + +bool TRequestReplier::Reply(void* threadSpecificResource) { + const TReplyParams params = { threadSpecificResource, Input(), Output()}; - return DoReply(params); -} + return DoReply(params); +} bool TryToBindAddresses(const THttpServerOptions& options, const std::function<void(TSocket)>* callbackOnBoundAddress) { THttpServerOptions::TBindAddresses addrs; |
