comparison src/http/ngx_http_core_module.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 34fb3a573548
children a094317ba307
comparison
equal deleted inserted replaced
399:59e324e4d6d3 400:6ebbca3d5ed7
45 #endif 45 #endif
46 #if (NGX_HAVE_DEFERRED_ACCEPT && defined TCP_DEFER_ACCEPT) 46 #if (NGX_HAVE_DEFERRED_ACCEPT && defined TCP_DEFER_ACCEPT)
47 ngx_uint_t deferred_accept; 47 ngx_uint_t deferred_accept;
48 #endif 48 #endif
49 49
50 u_char addr[INET_ADDRSTRLEN + 6]; 50 u_char addr[NGX_INET_ADDRSTRLEN + sizeof(":65535")];
51 51
52 } ngx_http_listen_conf_t; 52 } ngx_http_listen_conf_t;
53 53
54 54
55 typedef struct { 55 typedef struct {
240 unsigned exact_match:1; 240 unsigned exact_match:1;
241 unsigned noregex:1; 241 unsigned noregex:1;
242 242
243 unsigned auto_redirect:1; 243 unsigned auto_redirect:1;
244 unsigned alias:1; 244 unsigned alias:1;
245 #if (NGX_HTTP_GZIP)
246 unsigned gzip_disable_msie6:2;
247 #endif
245 248
246 ngx_http_location_tree_node_t *static_locations; 249 ngx_http_location_tree_node_t *static_locations;
247 ngx_http_core_loc_conf_t **regex_locations; 250 ngx_http_core_loc_conf_t **regex_locations;
248 251
249 /* pointer to the modules' loc_conf */ 252 /* pointer to the modules' loc_conf */