comparison src/http/ngx_http_core_module.h @ 180:4cd3e70c4d60 NGINX_0_3_37

nginx 0.3.37 *) Feature: the "limit_except" directive. *) Feature: the "if" directive supports the "!~", "!~*", "-f", and "!-f" operators. *) Feature: the ngx_http_perl_module supports the $r->request_body method. *) Bugfix: in the ngx_http_addition_filter_module.
author Igor Sysoev <http://sysoev.ru>
date Fri, 07 Apr 2006 00:00:00 +0400
parents 6be073125f2e
children 13710a1813ad
comparison
equal deleted inserted replaced
179:654cbdc0401d 180:4cd3e70c4d60
26 #endif 26 #endif
27 #if (NGX_HAVE_DEFERRED_ACCEPT && defined TCP_DEFER_ACCEPT) 27 #if (NGX_HAVE_DEFERRED_ACCEPT && defined TCP_DEFER_ACCEPT)
28 ngx_uint_t deferred_accept; 28 ngx_uint_t deferred_accept;
29 #endif 29 #endif
30 30
31 u_char addr[INET_ADDRSTRLEN + 6];
32
31 } ngx_http_listen_conf_t; 33 } ngx_http_listen_conf_t;
32 34
33 35
34 typedef struct { 36 typedef struct {
35 in_addr_t addr; 37 in_addr_t addr;
193 /* array of inclusive ngx_http_core_loc_conf_t */ 195 /* array of inclusive ngx_http_core_loc_conf_t */
194 ngx_array_t locations; 196 ngx_array_t locations;
195 197
196 /* pointer to the modules' loc_conf */ 198 /* pointer to the modules' loc_conf */
197 void **loc_conf ; 199 void **loc_conf ;
200
201 uint32_t limit_except;
202 void **limit_except_loc_conf ;
198 203
199 ngx_http_handler_pt handler; 204 ngx_http_handler_pt handler;
200 205
201 ngx_str_t root; /* root, alias */ 206 ngx_str_t root; /* root, alias */
202 ngx_str_t post_action; 207 ngx_str_t post_action;