comparison src/http/ngx_http_core_module.h @ 2689:6caf687a831f

backout r2535: virtual names is a property of address:port pair, but is not a property of server configuration
author Igor Sysoev <igor@sysoev.ru>
date Thu, 09 Apr 2009 13:56:16 +0000
parents 859f6675a553
children aa95c69c3068
comparison
equal deleted inserted replaced
2688:9bcda0da8d36 2689:6caf687a831f
151 ngx_array_t server_names; 151 ngx_array_t server_names;
152 152
153 /* server ctx */ 153 /* server ctx */
154 ngx_http_conf_ctx_t *ctx; 154 ngx_http_conf_ctx_t *ctx;
155 155
156 ngx_http_virtual_names_t *virtual_names;
157
158 ngx_str_t server_name; 156 ngx_str_t server_name;
159 157
160 size_t connection_pool_size; 158 size_t connection_pool_size;
161 size_t request_pool_size; 159 size_t request_pool_size;
162 size_t client_header_buffer_size; 160 size_t client_header_buffer_size;
177 175
178 176
179 typedef struct { 177 typedef struct {
180 /* the default server configuration for this address:port */ 178 /* the default server configuration for this address:port */
181 ngx_http_core_srv_conf_t *core_srv_conf; 179 ngx_http_core_srv_conf_t *core_srv_conf;
180
181 ngx_http_virtual_names_t *virtual_names;
182 182
183 #if (NGX_HTTP_SSL) 183 #if (NGX_HTTP_SSL)
184 ngx_uint_t ssl; /* unsigned ssl:1; */ 184 ngx_uint_t ssl; /* unsigned ssl:1; */
185 #endif 185 #endif
186 } ngx_http_addr_conf_t; 186 } ngx_http_addr_conf_t;