comparison src/http/ngx_http_request.h @ 230:38e7b94d63ac NGINX_0_4_0

nginx 0.4.0 *) Change in internal API: the HTTP modules initialization was moved from the init module phase to the HTTP postconfiguration phase. *) Change: now the request body is not read beforehand for the ngx_http_perl_module: it's required to start the reading using the $r->has_request_body method. *) Feature: the ngx_http_perl_module supports the DECLINED return code. *) Feature: the ngx_http_dav_module supports the incoming "Date" header line for the PUT method. *) Feature: the "ssi" directive is available inside the "if" block. *) Bugfix: a segmentation fault occurred if there was an "index" directive with variables and the first index name was without variables; bug appeared in 0.1.29.
author Igor Sysoev <http://sysoev.ru>
date Wed, 30 Aug 2006 00:00:00 +0400
parents 9eebc1b2cdbb
children a528ae0fe909
comparison
equal deleted inserted replaced
229:1965c8e23be7 230:38e7b94d63ac
182 #endif 182 #endif
183 183
184 #if (NGX_HTTP_DAV) 184 #if (NGX_HTTP_DAV)
185 ngx_table_elt_t *depth; 185 ngx_table_elt_t *depth;
186 ngx_table_elt_t *destination; 186 ngx_table_elt_t *destination;
187 ngx_table_elt_t *date;
187 #endif 188 #endif
188 189
189 ngx_str_t user; 190 ngx_str_t user;
190 ngx_str_t passwd; 191 ngx_str_t passwd;
191 192
350 ngx_uint_t port; 351 ngx_uint_t port;
351 ngx_str_t *port_text; /* ":80" */ 352 ngx_str_t *port_text; /* ":80" */
352 ngx_str_t server_name; 353 ngx_str_t server_name;
353 ngx_http_virtual_names_t *virtual_names; 354 ngx_http_virtual_names_t *virtual_names;
354 355
355 ngx_uint_t phase;
356 ngx_int_t phase_handler; 356 ngx_int_t phase_handler;
357 ngx_http_handler_pt content_handler; 357 ngx_http_handler_pt content_handler;
358 ngx_uint_t access_code; 358 ngx_uint_t access_code;
359 359
360 ngx_http_variable_value_t *variables; 360 ngx_http_variable_value_t *variables;