diff options
| author | Maxim Dounin <mdounin@mdounin.ru> | 2011-09-15 19:20:08 +0000 |
|---|---|---|
| committer | Maxim Dounin <mdounin@mdounin.ru> | 2011-09-15 19:20:08 +0000 |
| commit | 4686f30a0c2f3746d022e6a5855847d4738d264f (patch) | |
| tree | f390c6de5f965e7fa68d8faa046756d9b561751a /src/http/ngx_http_upstream.h | |
| parent | 2da36b30c3a61f96734d1f6708f0a70575fc138c (diff) | |
| download | nginx-4686f30a0c2f3746d022e6a5855847d4738d264f.tar.gz nginx-4686f30a0c2f3746d022e6a5855847d4738d264f.tar.bz2 | |
Upstream: Transfer-Encoding header processing.
Diffstat (limited to '')
| -rw-r--r-- | src/http/ngx_http_upstream.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/http/ngx_http_upstream.h b/src/http/ngx_http_upstream.h index 6e62044dc..4bb79575c 100644 --- a/src/http/ngx_http_upstream.h +++ b/src/http/ngx_http_upstream.h @@ -217,6 +217,7 @@ typedef struct { ngx_table_elt_t *location; ngx_table_elt_t *accept_ranges; ngx_table_elt_t *www_authenticate; + ngx_table_elt_t *transfer_encoding; #if (NGX_HTTP_GZIP) ngx_table_elt_t *content_encoding; @@ -225,6 +226,8 @@ typedef struct { off_t content_length_n; ngx_array_t cache_control; + + unsigned chunked:1; } ngx_http_upstream_headers_in_t; |
