comparison src/core/ngx_config.h @ 400:6ebbca3d5ed7 NGINX_0_7_12

nginx 0.7.12 *) Feature: the "server_name" directive supports empty name "". *) Feature: the "gzip_disable" directive supports special "msie6" mask. *) Bugfix: if the "max_fails=0" parameter was used in upstream with several servers, then a worker process exited on a SIGFPE signal. Thanks to Maxim Dounin. *) Bugfix: a request body was dropped while redirection via an "error_page" directive. *) Bugfix: a full response was returned for request method HEAD while redirection via an "error_page" directive. *) Bugfix: the $r->header_in() method did not return value of the "Host", "User-Agent", and "Connection" request header lines; the bug had appeared in 0.7.0.
author Igor Sysoev <http://sysoev.ru>
date Tue, 26 Aug 2008 00:00:00 +0400
parents 0b6053502c55
children b246022ef454
comparison
equal deleted inserted replaced
399:59e324e4d6d3 400:6ebbca3d5ed7
114 114
115 #ifndef INADDR_NONE /* Solaris */ 115 #ifndef INADDR_NONE /* Solaris */
116 #define INADDR_NONE ((unsigned int) -1) 116 #define INADDR_NONE ((unsigned int) -1)
117 #endif 117 #endif
118 118
119 #ifndef INET_ADDRSTRLEN /* Win32 */
120 #define INET_ADDRSTRLEN 16
121 #endif
122
123 #ifdef MAXHOSTNAMELEN 119 #ifdef MAXHOSTNAMELEN
124 #define NGX_MAXHOSTNAMELEN MAXHOSTNAMELEN 120 #define NGX_MAXHOSTNAMELEN MAXHOSTNAMELEN
125 #else 121 #else
126 #define NGX_MAXHOSTNAMELEN 256 122 #define NGX_MAXHOSTNAMELEN 256
127 #endif 123 #endif