comparison src/core/ngx_connection.h @ 682:5cb5db9975ba NGINX_1_3_4

nginx 1.3.4 *) Change: the "ipv6only" parameter is now turned on by default for listening IPv6 sockets. *) Feature: the Clang compiler support. *) Bugfix: extra listening sockets might be created. Thanks to Roman Odaisky. *) Bugfix: nginx/Windows might hog CPU if a worker process failed to start. Thanks to Ricardo Villalobos Guevara. *) Bugfix: the "proxy_pass_header", "fastcgi_pass_header", "scgi_pass_header", "uwsgi_pass_header", "proxy_hide_header", "fastcgi_hide_header", "scgi_hide_header", and "uwsgi_hide_header" directives might be inherited incorrectly.
author Igor Sysoev <http://sysoev.ru>
date Tue, 31 Jul 2012 00:00:00 +0400
parents d0f7a625f27c
children
comparison
equal deleted inserted replaced
681:625501f84a6b 682:5cb5db9975ba
62 unsigned nonblocking:1; 62 unsigned nonblocking:1;
63 unsigned shared:1; /* shared between threads or processes */ 63 unsigned shared:1; /* shared between threads or processes */
64 unsigned addr_ntop:1; 64 unsigned addr_ntop:1;
65 65
66 #if (NGX_HAVE_INET6 && defined IPV6_V6ONLY) 66 #if (NGX_HAVE_INET6 && defined IPV6_V6ONLY)
67 unsigned ipv6only:2; 67 unsigned ipv6only:1;
68 #endif 68 #endif
69 unsigned keepalive:2; 69 unsigned keepalive:2;
70 70
71 #if (NGX_HAVE_DEFERRED_ACCEPT) 71 #if (NGX_HAVE_DEFERRED_ACCEPT)
72 unsigned deferred_accept:1; 72 unsigned deferred_accept:1;