comparison src/http/ngx_http_request.c @ 2348:8298d1be0b44 stable-0.6

r2068 merge: the "Expect" header support
author Igor Sysoev <igor@sysoev.ru>
date Thu, 27 Nov 2008 14:22:34 +0000
parents 9e219f02594c
children 8e4450668968
comparison
equal deleted inserted replaced
2347:dc52b3f7591e 2348:8298d1be0b44
107 107
108 { ngx_string("Transfer-Encoding"), 108 { ngx_string("Transfer-Encoding"),
109 offsetof(ngx_http_headers_in_t, transfer_encoding), 109 offsetof(ngx_http_headers_in_t, transfer_encoding),
110 ngx_http_process_header_line }, 110 ngx_http_process_header_line },
111 111
112 { ngx_string("Expect"),
113 offsetof(ngx_http_headers_in_t, expect),
114 ngx_http_process_unique_header_line },
115
112 #if (NGX_HTTP_GZIP) 116 #if (NGX_HTTP_GZIP)
113 { ngx_string("Accept-Encoding"), 117 { ngx_string("Accept-Encoding"),
114 offsetof(ngx_http_headers_in_t, accept_encoding), 118 offsetof(ngx_http_headers_in_t, accept_encoding),
115 ngx_http_process_header_line }, 119 ngx_http_process_header_line },
116 120