tls_wrap: bump kClearOutChunkSize to 16kb

pull/5010/head
Fedor Indutny 2013-12-10 22:28:26 +04:00
parent 78cd4533d9
commit c17449df16
1 changed files with 1 additions and 1 deletions

View File

@ -66,7 +66,7 @@ class TLSCallbacks : public crypto::SSLWrap<TLSCallbacks>,
int DoShutdown(ShutdownWrap* req_wrap, uv_shutdown_cb cb); int DoShutdown(ShutdownWrap* req_wrap, uv_shutdown_cb cb);
protected: protected:
static const int kClearOutChunkSize = 1024; static const int kClearOutChunkSize = 16384; // 16kb
// Maximum number of buffers passed to uv_write() // Maximum number of buffers passed to uv_write()
static const int kSimultaneousBufferCount = 10; static const int kSimultaneousBufferCount = 10;