aboutsummaryrefslogtreecommitdiff
path: root/src/http/ngx_http_request.h
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2008-06-26 13:00:39 +0000
committerIgor Sysoev <igor@sysoev.ru>2008-06-26 13:00:39 +0000
commit1e1f4c8a04f32907c1b9e263ec45bf20bb6210bb (patch)
treed438f11f031241622edd79953dc4dcd91ff63187 /src/http/ngx_http_request.h
parent24329bf299b2ce4f4d9b02306651e1d64a4c6216 (diff)
downloadnginx-1e1f4c8a04f32907c1b9e263ec45bf20bb6210bb.tar.gz
nginx-1e1f4c8a04f32907c1b9e263ec45bf20bb6210bb.zip
the "Expect" header support
Diffstat (limited to 'src/http/ngx_http_request.h')
-rw-r--r--src/http/ngx_http_request.h2
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;