diff options
| author | Igor Sysoev <igor@sysoev.ru> | 2008-11-27 14:22:34 +0000 |
|---|---|---|
| committer | Igor Sysoev <igor@sysoev.ru> | 2008-11-27 14:22:34 +0000 |
| commit | e51f06eb0146192197d15ed5df23bb6cbfbdac29 (patch) | |
| tree | e2d64a053fb36f433d98836946f2cf6a9fe24d62 /src/http/ngx_http_request.h | |
| parent | acd2f06a35612343ffb305d7054ae57cdf4ad673 (diff) | |
| download | nginx-e51f06eb0146192197d15ed5df23bb6cbfbdac29.tar.gz nginx-e51f06eb0146192197d15ed5df23bb6cbfbdac29.tar.bz2 | |
r2068 merge:
the "Expect" header support
Diffstat (limited to '')
| -rw-r--r-- | src/http/ngx_http_request.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/http/ngx_http_request.h b/src/http/ngx_http_request.h index 2e7ff54b6..1a4eae106 100644 --- a/src/http/ngx_http_request.h +++ b/src/http/ngx_http_request.h @@ -171,6 +171,7 @@ typedef struct { ngx_table_elt_t *if_range; ngx_table_elt_t *transfer_encoding; + ngx_table_elt_t *expect; #if (NGX_HTTP_GZIP) ngx_table_elt_t *accept_encoding; @@ -467,6 +468,7 @@ struct ngx_http_request_s { unsigned request_complete:1; unsigned request_output:1; unsigned header_sent:1; + unsigned expect_tested:1; unsigned done:1; unsigned utf8:1; |
