comparison src/http/ngx_http_request.h @ 477:ad1e9ebf93bb release-0.1.13

nginx-0.1.13-RELEASE import *) Feature: the server_names_hash and server_names_hash_threshold directives. *) Bugfix: the *.domain.tld names in the "server_name" directive did not work. *) Bugfix: the %request_length log parameter logged the incorrect length.
author Igor Sysoev <igor@sysoev.ru>
date Tue, 21 Dec 2004 12:30:30 +0000
parents c3c2848fc081
children c52408583801
comparison
equal deleted inserted replaced
476:7e8b84ab09e9 477:ad1e9ebf93bb
252 void **ctx; 252 void **ctx;
253 void **main_conf; 253 void **main_conf;
254 void **srv_conf; 254 void **srv_conf;
255 void **loc_conf; 255 void **loc_conf;
256 256
257 ngx_http_cache_entry_t *cache; 257 ngx_http_cache_t *cache;
258 258
259 ngx_file_t file; 259 ngx_file_t file;
260 260
261 ngx_pool_t *pool; 261 ngx_pool_t *pool;
262 ngx_buf_t *header_in; 262 ngx_buf_t *header_in;
285 285
286 uint32_t in_addr; 286 uint32_t in_addr;
287 ngx_uint_t port; 287 ngx_uint_t port;
288 ngx_str_t *port_text; /* ":80" */ 288 ngx_str_t *port_text; /* ":80" */
289 ngx_str_t server_name; 289 ngx_str_t server_name;
290 ngx_array_t *virtual_names; 290 ngx_http_in_addr_t *virtual_names;
291 291
292 ngx_uint_t phase; 292 ngx_uint_t phase;
293 ngx_int_t phase_handler; 293 ngx_int_t phase_handler;
294 ngx_http_handler_pt content_handler; 294 ngx_http_handler_pt content_handler;
295 295