comparison src/http/ngx_http_core_module.h @ 2028:bff8689c6953

move configuration phase only field to the end of structure
author Igor Sysoev <igor@sysoev.ru>
date Sat, 24 May 2008 14:46:46 +0000
parents f321b59ae0e9
children c036922f6f07
comparison
equal deleted inserted replaced
2027:f321b59ae0e9 2028:bff8689c6953
241 unsigned exact_match:1; 241 unsigned exact_match:1;
242 unsigned noregex:1; 242 unsigned noregex:1;
243 243
244 unsigned auto_redirect:1; 244 unsigned auto_redirect:1;
245 unsigned alias:1; 245 unsigned alias:1;
246
247 ngx_queue_t *locations;
248 246
249 ngx_http_location_tree_node_t *static_locations; 247 ngx_http_location_tree_node_t *static_locations;
250 ngx_http_core_loc_conf_t **regex_locations; 248 ngx_http_core_loc_conf_t **regex_locations;
251 249
252 /* pointer to the modules' loc_conf */ 250 /* pointer to the modules' loc_conf */
325 323
326 ngx_log_t *err_log; 324 ngx_log_t *err_log;
327 325
328 ngx_uint_t types_hash_max_size; 326 ngx_uint_t types_hash_max_size;
329 ngx_uint_t types_hash_bucket_size; 327 ngx_uint_t types_hash_bucket_size;
328
329 ngx_queue_t *locations;
330 330
331 #if 0 331 #if 0
332 ngx_http_core_loc_conf_t *prev_location; 332 ngx_http_core_loc_conf_t *prev_location;
333 #endif 333 #endif
334 }; 334 };