Revert "nghttpx: Use smaller write buffer"

This reverts commit 742d80aac4.
This commit is contained in:
Tatsuhiro Tsujikawa 2015-01-09 20:55:39 +09:00
parent a2e4a1eb26
commit 19101f7f4a
2 changed files with 2 additions and 2 deletions

View File

@ -135,7 +135,7 @@ public:
int64_t body_bytes_sent); int64_t body_bytes_sent);
WorkerStat *get_worker_stat() const; WorkerStat *get_worker_stat() const;
using WriteBuf = RingBuf<16384>; using WriteBuf = RingBuf<65536>;
using ReadBuf = RingBuf<8192>; using ReadBuf = RingBuf<8192>;
WriteBuf *get_wb(); WriteBuf *get_wb();

View File

@ -168,8 +168,8 @@ public:
CONNECTION_CHECK_STARTED CONNECTION_CHECK_STARTED
}; };
using WriteBuf = RingBuf<16384>;
using ReadBuf = RingBuf<8192>; using ReadBuf = RingBuf<8192>;
using WriteBuf = RingBuf<65536>;
private: private:
ev_io wev_; ev_io wev_;