From 5a497b9f303934c8dcb39d79cbcf7c637f4bb82d Mon Sep 17 00:00:00 2001 From: Tatsuhiro Tsujikawa Date: Fri, 30 Jan 2015 21:33:18 +0900 Subject: [PATCH] nghttpx: Update doc --- src/shrpx_client_handler.h | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/src/shrpx_client_handler.h b/src/shrpx_client_handler.h index 7ad5c61a..e2ebda34 100644 --- a/src/shrpx_client_handler.h +++ b/src/shrpx_client_handler.h @@ -110,12 +110,8 @@ public: bool get_tls_handshake() const; void set_tls_renegotiation(bool f); bool get_tls_renegotiation() const; - // Returns maximum chunk size for one evbuffer_add(). The intention - // of this chunk size is control the TLS record size. The actual - // SSL_write() call is done under libevent control. In - // libevent-2.0.21, libevent calls SSL_write() for each chunk inside - // evbuffer. This means that we can control TLS record size by - // adjusting the chunk size to evbuffer_add(). + // Returns maximum write size. The intention of this chunk size is + // control the TLS record size. // // This function returns -1, if TLS is not enabled or no limitation // is required.