comparison src/http/ngx_http_request.c @ 384:12defd37f578 NGINX_0_7_4

nginx 0.7.4 *) Feature: variables support in the "access_log" directive. *) Feature: the "open_log_file_cache" directive. *) Feature: the -g switch. *) Feature: the "Expect" request header line support. *) Bugfix: large SSI inclusions might be truncated.
author Igor Sysoev <http://sysoev.ru>
date Mon, 30 Jun 2008 00:00:00 +0400
parents 984bb0b1399b
children 1172e6d6f40f
comparison
equal deleted inserted replaced
383:6ee3ada01457 384:12defd37f578
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