nghttpx: Use 16KiB buffer for reading to match TLS record size

This commit is contained in:
Tatsuhiro Tsujikawa 2016-06-17 00:50:40 +09:00
parent 1fb3d71f77
commit c0b6b9a282
1 changed files with 1 additions and 1 deletions

View File

@ -124,7 +124,7 @@ public:
int64_t body_bytes_sent);
Worker *get_worker() const;
using ReadBuf = Buffer<8_k>;
using ReadBuf = Buffer<16_k>;
ReadBuf *get_rb();