comparison src/http/modules/proxy/ngx_http_proxy_handler.h @ 174:ea464a6c0581

nginx-0.0.1-2003-11-05-01:12:39 import
author Igor Sysoev <igor@sysoev.ru>
date Tue, 04 Nov 2003 22:12:39 +0000
parents caa57ddf6d77
children e92c2c647c57
comparison
equal deleted inserted replaced
173:4fb2a2cff023 174:ea464a6c0581
71 int use_stale; 71 int use_stale;
72 72
73 ngx_path_t *cache_path; 73 ngx_path_t *cache_path;
74 ngx_path_t *temp_path; 74 ngx_path_t *temp_path;
75 75
76 ngx_http_busy_lock_t *busy_lock;
77
76 ngx_http_proxy_upstream_conf_t *upstream; 78 ngx_http_proxy_upstream_conf_t *upstream;
77 ngx_peers_t *peers; 79 ngx_peers_t *peers;
78 } ngx_http_proxy_loc_conf_t; 80 } ngx_http_proxy_loc_conf_t;
79 81
80 82
141 143
142 unsigned accel:1; 144 unsigned accel:1;
143 145
144 unsigned cachable:1; 146 unsigned cachable:1;
145 unsigned stale:1; 147 unsigned stale:1;
148 unsigned valid_header_in:1;
146 149
147 unsigned request_sent:1; 150 unsigned request_sent:1;
148 unsigned header_sent:1; 151 unsigned header_sent:1;
149 152
150 153