diff options
author | lunc <lunc@yandex-team.ru> | 2022-02-10 16:49:39 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:49:39 +0300 |
commit | ad8c15be8c1a4f48a52390f23cb735060461684e (patch) | |
tree | 5d5cb817648f650d76cf1076100726fd9b8448e8 /library/cpp/http/server | |
parent | 2a5efb07f92ee222959e5f3f26eddd1d6c7fd7da (diff) | |
download | ydb-ad8c15be8c1a4f48a52390f23cb735060461684e.tar.gz |
Restoring authorship annotation for <lunc@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'library/cpp/http/server')
-rw-r--r-- | library/cpp/http/server/http.cpp | 4 | ||||
-rw-r--r-- | library/cpp/http/server/http.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/library/cpp/http/server/http.cpp b/library/cpp/http/server/http.cpp index 2d77dc1de1..128583bdd7 100644 --- a/library/cpp/http/server/http.cpp +++ b/library/cpp/http/server/http.cpp @@ -396,7 +396,7 @@ public: Options_.MaxQueueSize = maxQS; Requests->Start(Options_.nThreads, Options_.MaxQueueSize); } - + TImpl(THttpServer* parent, ICallBack* cb, TMtpQueueRef mainWorkers, TMtpQueueRef failWorkers, const TOptions& options_) : Requests(mainWorkers) , FailRequests(failWorkers) @@ -481,7 +481,7 @@ private: return pool; } }; - + THttpServer::THttpServer(ICallBack* cb, const TOptions& options, IThreadFactory* pool) : Impl_(new TImpl(this, cb, options, pool)) { diff --git a/library/cpp/http/server/http.h b/library/cpp/http/server/http.h index 552149a136..b292d38f27 100644 --- a/library/cpp/http/server/http.h +++ b/library/cpp/http/server/http.h @@ -13,7 +13,7 @@ class IThreadFactory; class TClientRequest; class TClientConnection; - + class THttpServer { friend class TClientRequest; friend class TClientConnection; |