comparison src/os/unix/ngx_posix_init.c @ 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 e5fa0a4a7d27
children
comparison
equal deleted inserted replaced
681:625501f84a6b 682:5cb5db9975ba
96 "getrlimit(RLIMIT_NOFILE): %r:%r", 96 "getrlimit(RLIMIT_NOFILE): %r:%r",
97 rlmt.rlim_cur, rlmt.rlim_max); 97 rlmt.rlim_cur, rlmt.rlim_max);
98 } 98 }
99 99
100 100
101 #if 0
102
101 ngx_int_t 103 ngx_int_t
102 ngx_posix_post_conf_init(ngx_log_t *log) 104 ngx_posix_post_conf_init(ngx_log_t *log)
103 { 105 {
104 ngx_fd_t pp[2]; 106 ngx_fd_t pp[2];
105 107
120 } 122 }
121 } 123 }
122 124
123 return NGX_OK; 125 return NGX_OK;
124 } 126 }
127
128 #endif