Releasing memory of idle SSL connection. This saves about 34K per SSL

connection. The SSL_MODE_RELEASE_BUFFERS option is available since
OpenSSL 1.0.0d.
This commit is contained in:
Igor Sysoev 2011-10-07 12:15:20 +00:00
parent 95084f7e1c
commit 94b5460c70

View File

@ -179,6 +179,10 @@ ngx_ssl_create(ngx_ssl_t *ssl, ngx_uint_t protocols, void *data)
SSL_CTX_set_options(ssl->ctx, SSL_OP_NO_COMPRESSION); SSL_CTX_set_options(ssl->ctx, SSL_OP_NO_COMPRESSION);
#endif #endif
#ifdef SSL_MODE_RELEASE_BUFFERS
SSL_CTX_set_mode(ssl->ctx, SSL_MODE_RELEASE_BUFFERS);
#endif
SSL_CTX_set_read_ahead(ssl->ctx, 1); SSL_CTX_set_read_ahead(ssl->ctx, 1);
SSL_CTX_set_info_callback(ssl->ctx, ngx_ssl_info_callback); SSL_CTX_set_info_callback(ssl->ctx, ngx_ssl_info_callback);