comparison src/http/ngx_http_request.h @ 26:45fe5b98a9de NGINX_0_1_13

nginx 0.1.13 *) 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 <http://sysoev.ru>
date Tue, 21 Dec 2004 00:00:00 +0300
parents 420dd3f9e703
children 7ca9bdc82b3f
comparison
equal deleted inserted replaced
25:21488c53e135 26:45fe5b98a9de
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