levin_protocol_handler_async: tune down preallocation a fair bit

It can allocate a lot when getting a lot of connections
(in particular, the stress test on windows apparently pushes
that memory to actual use, rather than just allocated)
This commit is contained in:
moneromooo-monero 2019-04-22 22:29:56 +00:00
parent 475481949a
commit edbae2d05b
No known key found for this signature in database
GPG Key ID: 686F07454D6CEFC3
1 changed files with 1 additions and 1 deletions

View File

@ -266,7 +266,7 @@ public:
m_pservice_endpoint(psnd_hndlr),
m_config(config),
m_connection_context(conn_context),
m_cache_in_buffer(256 * 1024),
m_cache_in_buffer(4 * 1024),
m_state(stream_state_head)
{
m_close_called = 0;