comparison src/http/ngx_http.c @ 654:753f505670e0 NGINX_1_1_11

nginx 1.1.11 *) Feature: the "so_keepalive" parameter of the "listen" directive. Thanks to Vsevolod Stakhov. *) Feature: the "if_not_empty" parameter of the "fastcgi/scgi/uwsgi_param" directives. *) Feature: the $https variable. *) Feature: the "proxy_redirect" directive supports variables in the first parameter. *) Feature: the "proxy_redirect" directive supports regular expressions. *) Bugfix: the $sent_http_cache_control variable might contain a wrong value if the "expires" directive was used. Thanks to Yichun Zhang. *) Bugfix: the "read_ahead" directive might not work combined with "try_files" and "open_file_cache". *) Bugfix: a segmentation fault might occur in a worker process if small time was used in the "inactive" parameter of the "proxy_cache_path" directive. *) Bugfix: responses from cache might hang.
author Igor Sysoev <http://sysoev.ru>
date Mon, 12 Dec 2011 00:00:00 +0400
parents d3cf6c6b0043
children d0f7a625f27c
comparison
equal deleted inserted replaced
653:8c96af2112c1 654:753f505670e0
1760 1760
1761 ls->backlog = addr->opt.backlog; 1761 ls->backlog = addr->opt.backlog;
1762 ls->rcvbuf = addr->opt.rcvbuf; 1762 ls->rcvbuf = addr->opt.rcvbuf;
1763 ls->sndbuf = addr->opt.sndbuf; 1763 ls->sndbuf = addr->opt.sndbuf;
1764 1764
1765 ls->keepalive = addr->opt.so_keepalive;
1766 #if (NGX_HAVE_KEEPALIVE_TUNABLE)
1767 ls->keepidle = addr->opt.tcp_keepidle;
1768 ls->keepintvl = addr->opt.tcp_keepintvl;
1769 ls->keepcnt = addr->opt.tcp_keepcnt;
1770 #endif
1771
1765 #if (NGX_HAVE_DEFERRED_ACCEPT && defined SO_ACCEPTFILTER) 1772 #if (NGX_HAVE_DEFERRED_ACCEPT && defined SO_ACCEPTFILTER)
1766 ls->accept_filter = addr->opt.accept_filter; 1773 ls->accept_filter = addr->opt.accept_filter;
1767 #endif 1774 #endif
1768 1775
1769 #if (NGX_HAVE_DEFERRED_ACCEPT && defined TCP_DEFER_ACCEPT) 1776 #if (NGX_HAVE_DEFERRED_ACCEPT && defined TCP_DEFER_ACCEPT)