diff options
author | shishyando <shishyando@yandex-team.com> | 2022-08-18 17:34:13 +0300 |
---|---|---|
committer | shishyando <shishyando@yandex-team.com> | 2022-08-18 17:34:13 +0300 |
commit | 9beb7cc7cc1d932da12951a5b4becacdcec3f1ec (patch) | |
tree | b4189507cba56aec7dbc6642eb75f6feb8545e06 /library/cpp | |
parent | c140abc954b61ab7d86af80bdeced01482d9971a (diff) | |
download | ydb-9beb7cc7cc1d932da12951a5b4becacdcec3f1ec.tar.gz |
increase MessageMax to 64kb
increase MessageMax to 64kb
Diffstat (limited to 'library/cpp')
-rw-r--r-- | library/cpp/http/fetch/httpagent.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/cpp/http/fetch/httpagent.h b/library/cpp/http/fetch/httpagent.h index 96475cc05d..c66af00ced 100644 --- a/library/cpp/http/fetch/httpagent.h +++ b/library/cpp/http/fetch/httpagent.h @@ -301,7 +301,7 @@ protected: const char* Method; size_t MethodLen; unsigned short HostheaderLen; - static const ssize_t MessageMax = 32768; + static const ssize_t MessageMax = 65536; }; struct TNoTimer { |