diff options
author | sskvor <sskvor@yandex-team.com> | 2023-03-14 23:23:14 +0300 |
---|---|---|
committer | sskvor <sskvor@yandex-team.com> | 2023-03-14 23:23:14 +0300 |
commit | 870e6e6108a92143ce551f4b924da26de4803358 (patch) | |
tree | 77ffa32366c8176c5a31790cd0d3be2804effe58 /library/cpp/http/server/options.h | |
parent | 196d0bbc0be43b25d76ce2902da9fa13ee0c9ae0 (diff) | |
download | ydb-870e6e6108a92143ce551f4b924da26de4803358.tar.gz |
[http/server] Add epoll max events option
Diffstat (limited to 'library/cpp/http/server/options.h')
-rw-r--r-- | library/cpp/http/server/options.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/library/cpp/http/server/options.h b/library/cpp/http/server/options.h index 38eda0e5e7..5976d58f32 100644 --- a/library/cpp/http/server/options.h +++ b/library/cpp/http/server/options.h @@ -161,6 +161,7 @@ public: ui32 MaxFQueueSize = 0; ui32 MaxConnections = 100; int ListenBacklog = SOMAXCONN; + ui32 EpollMaxEvents = 1; TDuration ClientTimeout; size_t OutputBufferSize = 0; ui64 MaxInputContentLength = sizeof(size_t) <= 4 ? 2_GB : 64_GB; |