comparison src/http/ngx_http_request.h @ 6698:e8d4c9e9682a

Removed influence of some options on structures.
author Ruslan Ermilov <ru@nginx.com>
date Tue, 20 Sep 2016 12:30:52 +0300
parents 654d2dae97d3
children 3ab8736958cb
comparison
equal deleted inserted replaced
6697:52367732bcbc 6698:e8d4c9e9682a
300 300
301 typedef struct { 301 typedef struct {
302 ngx_http_addr_conf_t *addr_conf; 302 ngx_http_addr_conf_t *addr_conf;
303 ngx_http_conf_ctx_t *conf_ctx; 303 ngx_http_conf_ctx_t *conf_ctx;
304 304
305 #if (NGX_HTTP_SSL && defined SSL_CTRL_SET_TLSEXT_HOSTNAME) 305 #if (NGX_HTTP_SSL)
306 ngx_str_t *ssl_servername; 306 ngx_str_t *ssl_servername;
307 #if (NGX_PCRE) 307 #if (NGX_PCRE)
308 ngx_http_regex_t *ssl_servername_regex; 308 ngx_http_regex_t *ssl_servername_regex;
309 #endif 309 #endif
310 #endif 310 #endif
537 unsigned filter_need_temporary:1; 537 unsigned filter_need_temporary:1;
538 unsigned allow_ranges:1; 538 unsigned allow_ranges:1;
539 unsigned subrequest_ranges:1; 539 unsigned subrequest_ranges:1;
540 unsigned single_range:1; 540 unsigned single_range:1;
541 unsigned disable_not_modified:1; 541 unsigned disable_not_modified:1;
542
543 #if (NGX_STAT_STUB)
544 unsigned stat_reading:1; 542 unsigned stat_reading:1;
545 unsigned stat_writing:1; 543 unsigned stat_writing:1;
546 #endif
547 544
548 /* used to parse HTTP headers */ 545 /* used to parse HTTP headers */
549 546
550 ngx_uint_t state; 547 ngx_uint_t state;
551 548