comparison src/http/ngx_http_request.c @ 3814:e6e453203bae

"If-Unmodified-Since" support
author Igor Sysoev <igor@sysoev.ru>
date Mon, 06 Dec 2010 11:11:05 +0000
parents 37715361263a
children de59ad6bf557
comparison
equal deleted inserted replaced
3813:c870fb78550c 3814:e6e453203bae
84 { ngx_string("Connection"), offsetof(ngx_http_headers_in_t, connection), 84 { ngx_string("Connection"), offsetof(ngx_http_headers_in_t, connection),
85 ngx_http_process_connection }, 85 ngx_http_process_connection },
86 86
87 { ngx_string("If-Modified-Since"), 87 { ngx_string("If-Modified-Since"),
88 offsetof(ngx_http_headers_in_t, if_modified_since), 88 offsetof(ngx_http_headers_in_t, if_modified_since),
89 ngx_http_process_unique_header_line },
90
91 { ngx_string("If-Unmodified-Since"),
92 offsetof(ngx_http_headers_in_t, if_unmodified_since),
89 ngx_http_process_unique_header_line }, 93 ngx_http_process_unique_header_line },
90 94
91 { ngx_string("User-Agent"), offsetof(ngx_http_headers_in_t, user_agent), 95 { ngx_string("User-Agent"), offsetof(ngx_http_headers_in_t, user_agent),
92 ngx_http_process_user_agent }, 96 ngx_http_process_user_agent },
93 97