comparison src/http/ngx_http_upstream.h @ 322:56675f002600 NGINX_0_5_31

nginx 0.5.31 *) Feature: named locations. *) Feature: the "proxy_store" and "fastcgi_store" directives. *) Feature: the "proxy_store_access" and "fastcgi_store_access" directives.
author Igor Sysoev <http://sysoev.ru>
date Wed, 15 Aug 2007 00:00:00 +0400
parents 2ceaee987f37
children 7cf404023f50
comparison
equal deleted inserted replaced
321:6762c33c7da8 322:56675f002600
116 size_t busy_buffers_size_conf; 116 size_t busy_buffers_size_conf;
117 size_t max_temp_file_size_conf; 117 size_t max_temp_file_size_conf;
118 size_t temp_file_write_size_conf; 118 size_t temp_file_write_size_conf;
119 119
120 ngx_uint_t next_upstream; 120 ngx_uint_t next_upstream;
121 ngx_uint_t store_access;
121 122
122 ngx_bufs_t bufs; 123 ngx_bufs_t bufs;
123 124
124 ngx_flag_t buffering; 125 ngx_flag_t buffering;
125 ngx_flag_t pass_request_headers; 126 ngx_flag_t pass_request_headers;
138 ngx_str_t schema; 139 ngx_str_t schema;
139 ngx_str_t uri; 140 ngx_str_t uri;
140 ngx_str_t location; 141 ngx_str_t location;
141 ngx_str_t url; /* used in proxy_rewrite_location */ 142 ngx_str_t url; /* used in proxy_rewrite_location */
142 143
144 ngx_array_t *store_lengths;
145 ngx_array_t *store_values;
146
147 signed store:2;
143 unsigned intercept_404:1; 148 unsigned intercept_404:1;
144 unsigned change_buffering:1; 149 unsigned change_buffering:1;
145 150
146 #if (NGX_HTTP_SSL) 151 #if (NGX_HTTP_SSL)
147 ngx_ssl_t *ssl; 152 ngx_ssl_t *ssl;
235 240
236 ngx_str_t uri; 241 ngx_str_t uri;
237 242
238 ngx_http_cleanup_pt *cleanup; 243 ngx_http_cleanup_pt *cleanup;
239 244
245 unsigned store:1;
240 unsigned cachable:1; 246 unsigned cachable:1;
241 unsigned accel:1; 247 unsigned accel:1;
242 248
243 unsigned buffering:1; 249 unsigned buffering:1;
244 250