comparison src/core/ngx_connection.h @ 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 b9763778e212
children d0f7a625f27c
comparison
equal deleted inserted replaced
653:8c96af2112c1 654:753f505670e0
25 int type; 25 int type;
26 26
27 int backlog; 27 int backlog;
28 int rcvbuf; 28 int rcvbuf;
29 int sndbuf; 29 int sndbuf;
30 #if (NGX_HAVE_KEEPALIVE_TUNABLE)
31 int keepidle;
32 int keepintvl;
33 int keepcnt;
34 #endif
30 35
31 /* handler of accepted connection */ 36 /* handler of accepted connection */
32 ngx_connection_handler_pt handler; 37 ngx_connection_handler_pt handler;
33 38
34 void *servers; /* array of ngx_http_in_addr_t, for example */ 39 void *servers; /* array of ngx_http_in_addr_t, for example */
58 unsigned addr_ntop:1; 63 unsigned addr_ntop:1;
59 64
60 #if (NGX_HAVE_INET6 && defined IPV6_V6ONLY) 65 #if (NGX_HAVE_INET6 && defined IPV6_V6ONLY)
61 unsigned ipv6only:2; 66 unsigned ipv6only:2;
62 #endif 67 #endif
68 unsigned keepalive:2;
63 69
64 #if (NGX_HAVE_DEFERRED_ACCEPT) 70 #if (NGX_HAVE_DEFERRED_ACCEPT)
65 unsigned deferred_accept:1; 71 unsigned deferred_accept:1;
66 unsigned delete_deferred:1; 72 unsigned delete_deferred:1;
67 unsigned add_deferred:1; 73 unsigned add_deferred:1;