comparison src/http/modules/ngx_http_ssi_filter_module.c @ 542: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 24b676623d4f
children e19e5f542878
comparison
equal deleted inserted replaced
541:b8ac674b0ec9 542:4c5d2c627a6c
1906 ngx_log_debug1(NGX_LOG_DEBUG_HTTP, r->connection->log, 0, 1906 ngx_log_debug1(NGX_LOG_DEBUG_HTTP, r->connection->log, 0,
1907 "ssi include: \"%V\"", uri); 1907 "ssi include: \"%V\"", uri);
1908 1908
1909 args.len = 0; 1909 args.len = 0;
1910 args.data = NULL; 1910 args.data = NULL;
1911 flags = 0; 1911 flags = NGX_HTTP_LOG_UNSAFE;
1912 1912
1913 if (ngx_http_parse_unsafe_uri(r, uri, &args, &flags) != NGX_OK) { 1913 if (ngx_http_parse_unsafe_uri(r, uri, &args, &flags) != NGX_OK) {
1914 return NGX_HTTP_SSI_ERROR; 1914 return NGX_HTTP_SSI_ERROR;
1915 } 1915 }
1916 1916