comparison src/http/modules/ngx_http_ssl_module.c @ 530:4c5d2c627a6c NGINX_0_8_17

nginx 0.8.17 *) Security: now "/../" are disabled in "Destination" request header line. *) Change: now $host variable value is always low case. *) Feature: the $ssl_session_id variable. *) Bugfix: socket leak; the bug had appeared in 0.8.11.
author Igor Sysoev <http://sysoev.ru>
date Mon, 28 Sep 2009 00:00:00 +0400
parents 005a70f9573b
children a52c99698e7f
comparison
equal deleted inserted replaced
529:b8ac674b0ec9 530:4c5d2c627a6c
182 (uintptr_t) ngx_ssl_get_protocol, NGX_HTTP_VAR_CHANGEABLE, 0 }, 182 (uintptr_t) ngx_ssl_get_protocol, NGX_HTTP_VAR_CHANGEABLE, 0 },
183 183
184 { ngx_string("ssl_cipher"), NULL, ngx_http_ssl_static_variable, 184 { ngx_string("ssl_cipher"), NULL, ngx_http_ssl_static_variable,
185 (uintptr_t) ngx_ssl_get_cipher_name, NGX_HTTP_VAR_CHANGEABLE, 0 }, 185 (uintptr_t) ngx_ssl_get_cipher_name, NGX_HTTP_VAR_CHANGEABLE, 0 },
186 186
187 { ngx_string("ssl_session_id"), NULL, ngx_http_ssl_variable,
188 (uintptr_t) ngx_ssl_get_session_id, NGX_HTTP_VAR_CHANGEABLE, 0 },
189
187 { ngx_string("ssl_client_cert"), NULL, ngx_http_ssl_variable, 190 { ngx_string("ssl_client_cert"), NULL, ngx_http_ssl_variable,
188 (uintptr_t) ngx_ssl_get_certificate, NGX_HTTP_VAR_CHANGEABLE, 0 }, 191 (uintptr_t) ngx_ssl_get_certificate, NGX_HTTP_VAR_CHANGEABLE, 0 },
189 192
190 { ngx_string("ssl_client_raw_cert"), NULL, ngx_http_ssl_variable, 193 { ngx_string("ssl_client_raw_cert"), NULL, ngx_http_ssl_variable,
191 (uintptr_t) ngx_ssl_get_raw_certificate, 194 (uintptr_t) ngx_ssl_get_raw_certificate,