comparison src/http/modules/ngx_http_ssl_module.h @ 4041:f87edc142316 stable-1.0

Merge of r3960, r3961, r3962, r3963, r3965: SSL related fixes: *) MSIE export versions are rare now, so RSA 512 key is generated on demand and is shared among all hosts instead of pregenerating for every HTTPS host on configuraiton phase. This decreases start time for configuration with large number of HTTPS hosts. *) ECDHE support; patch by Adrian Kotelba *) fix build by gcc46 with -Wunused-value option *) fix SSL connection issues on platforms with 32-bit off_t *) do not try to reuse and save a SSL session for a peer created on the fly by ngx_http_upstream_create_round_robin_peer(), since the peer lives only during request so the saved SSL session will never be used again and just causes memory leak
author Igor Sysoev <igor@sysoev.ru>
date Mon, 29 Aug 2011 12:35:53 +0000
parents cc07d164f0dc
children d620f497c50f
comparison
equal deleted inserted replaced
4040:0094c8636d5f 4041:f87edc142316
30 time_t session_timeout; 30 time_t session_timeout;
31 31
32 ngx_str_t certificate; 32 ngx_str_t certificate;
33 ngx_str_t certificate_key; 33 ngx_str_t certificate_key;
34 ngx_str_t dhparam; 34 ngx_str_t dhparam;
35 ngx_str_t ecdh_curve;
35 ngx_str_t client_certificate; 36 ngx_str_t client_certificate;
36 ngx_str_t crl; 37 ngx_str_t crl;
37 38
38 ngx_str_t ciphers; 39 ngx_str_t ciphers;
39 40