aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp
diff options
context:
space:
mode:
authorshishyando <shishyando@yandex-team.com>2022-08-18 17:34:13 +0300
committershishyando <shishyando@yandex-team.com>2022-08-18 17:34:13 +0300
commit9beb7cc7cc1d932da12951a5b4becacdcec3f1ec (patch)
treeb4189507cba56aec7dbc6642eb75f6feb8545e06 /library/cpp
parentc140abc954b61ab7d86af80bdeced01482d9971a (diff)
downloadydb-9beb7cc7cc1d932da12951a5b4becacdcec3f1ec.tar.gz
increase MessageMax to 64kb
increase MessageMax to 64kb
Diffstat (limited to 'library/cpp')
-rw-r--r--library/cpp/http/fetch/httpagent.h2
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 {