tls: fix throughput issues after incorrect merge

1e066e4a was done incorrectly and has overwritten an important change
in: c17449df. Using bigger output buffer increases performance in 3-4
times.

PR-URL: https://github.com/nodejs/node/pull/2381
Fix: https://github.com/joyent/node/issues/25803
Reviewed-By: Trevor Norris <trev.norris@gmail.com>
Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com>
pull/2342/head
Fedor Indutny 2015-08-14 15:57:33 -07:00
parent 7bdf7da867
commit 102939ada5
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@ class TLSWrap : public crypto::SSLWrap<TLSWrap>,
size_t self_size() const override { return sizeof(*this); }
protected:
static const int kClearOutChunkSize = 1024;
static const int kClearOutChunkSize = 16384;
// Maximum number of bytes for hello parser
static const int kMaxHelloLength = 16384;