comparison src/http/ngx_http_upstream.h @ 4123:0ee350b5177c

Upstream: Transfer-Encoding header processing.
author Maxim Dounin <mdounin@mdounin.ru>
date Thu, 15 Sep 2011 19:20:08 +0000
parents 42135dd1f0ea
children 0c30976f5bfa
comparison
equal deleted inserted replaced
4122:c7fae0daeb57 4123:0ee350b5177c
215 215
216 ngx_table_elt_t *last_modified; 216 ngx_table_elt_t *last_modified;
217 ngx_table_elt_t *location; 217 ngx_table_elt_t *location;
218 ngx_table_elt_t *accept_ranges; 218 ngx_table_elt_t *accept_ranges;
219 ngx_table_elt_t *www_authenticate; 219 ngx_table_elt_t *www_authenticate;
220 ngx_table_elt_t *transfer_encoding;
220 221
221 #if (NGX_HTTP_GZIP) 222 #if (NGX_HTTP_GZIP)
222 ngx_table_elt_t *content_encoding; 223 ngx_table_elt_t *content_encoding;
223 #endif 224 #endif
224 225
225 off_t content_length_n; 226 off_t content_length_n;
226 227
227 ngx_array_t cache_control; 228 ngx_array_t cache_control;
229
230 unsigned chunked:1;
228 } ngx_http_upstream_headers_in_t; 231 } ngx_http_upstream_headers_in_t;
229 232
230 233
231 typedef struct { 234 typedef struct {
232 ngx_str_t host; 235 ngx_str_t host;