comparison src/http/ngx_http_core_module.h @ 2549:2d34fba7cf06

captures support in server_name
author Igor Sysoev <igor@sysoev.ru>
date Fri, 06 Mar 2009 12:50:20 +0000
parents 163114282d2c
children c352c419be85
comparison
equal deleted inserted replaced
2548:163114282d2c 2549:2d34fba7cf06
243 243
244 244
245 struct ngx_http_server_name_s { 245 struct ngx_http_server_name_s {
246 #if (NGX_PCRE) 246 #if (NGX_PCRE)
247 ngx_regex_t *regex; 247 ngx_regex_t *regex;
248 ngx_uint_t captures; /* unsigned captures:1; */
248 #endif 249 #endif
249 ngx_http_core_srv_conf_t *core_srv_conf; /* virtual name server conf */ 250 ngx_http_core_srv_conf_t *core_srv_conf; /* virtual name server conf */
250 ngx_str_t name; 251 ngx_str_t name;
251 }; 252 };
252 253