comparison src/http/ngx_http_upstream.h @ 318:fc223117327f NGINX_0_6_3

nginx 0.6.3 *) Feature: the "proxy_store" and "fastcgi_store" directives. *) Bugfix: a segmentation fault might occur in worker process if the "auth_http_header" directive was used. Thanks to Maxim Dounin. *) Bugfix: a segmentation fault occurred in worker process if the CRAM-MD5 authentication method was used, but it was not enabled. *) Bugfix: a segmentation fault might occur in worker process when the HTTPS protocol was used in the "proxy_pass" directive. *) Bugfix: a segmentation fault might occur in worker process if the eventport method was used. *) Bugfix: the "proxy_ignore_client_abort" and "fastcgi_ignore_client_abort" directives did not work; bug appeared in 0.5.13.
author Igor Sysoev <http://sysoev.ru>
date Thu, 12 Jul 2007 00:00:00 +0400
parents 2ceaee987f37
children 95183808f549
comparison
equal deleted inserted replaced
317:fcdf0e42c859 318:fc223117327f
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;
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;
235 236
236 ngx_str_t uri; 237 ngx_str_t uri;
237 238
238 ngx_http_cleanup_pt *cleanup; 239 ngx_http_cleanup_pt *cleanup;
239 240
241 unsigned store:1;
240 unsigned cachable:1; 242 unsigned cachable:1;
241 unsigned accel:1; 243 unsigned accel:1;
242 244
243 unsigned buffering:1; 245 unsigned buffering:1;
244 246