comparison src/http/ngx_http_request.c @ 2067:5657037448d1

the "Expect" header support
author Igor Sysoev <igor@sysoev.ru>
date Thu, 26 Jun 2008 13:00:39 +0000
parents 2a92804f4109
children 479440385e35
comparison
equal deleted inserted replaced
2066:2bb4441a8c28 2067:5657037448d1
104 104
105 { ngx_string("Transfer-Encoding"), 105 { ngx_string("Transfer-Encoding"),
106 offsetof(ngx_http_headers_in_t, transfer_encoding), 106 offsetof(ngx_http_headers_in_t, transfer_encoding),
107 ngx_http_process_header_line }, 107 ngx_http_process_header_line },
108 108
109 { ngx_string("Expect"),
110 offsetof(ngx_http_headers_in_t, expect),
111 ngx_http_process_unique_header_line },
112
109 #if (NGX_HTTP_GZIP) 113 #if (NGX_HTTP_GZIP)
110 { ngx_string("Accept-Encoding"), 114 { ngx_string("Accept-Encoding"),
111 offsetof(ngx_http_headers_in_t, accept_encoding), 115 offsetof(ngx_http_headers_in_t, accept_encoding),
112 ngx_http_process_header_line }, 116 ngx_http_process_header_line },
113 117