diff options
author | Igor Sysoev <igor@sysoev.ru> | 2010-12-06 11:11:05 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2010-12-06 11:11:05 +0000 |
commit | ec4df838c82a8e5ee90e7dde039694116f8da9ca (patch) | |
tree | dd0909f7208632d768a9df92eb2a5c406727ea4a /src/http/ngx_http_request.c | |
parent | 0c39c274129b1f7efe36f6b51dc16bb4a0eddad1 (diff) | |
download | nginx-ec4df838c82a8e5ee90e7dde039694116f8da9ca.tar.gz nginx-ec4df838c82a8e5ee90e7dde039694116f8da9ca.zip |
"If-Unmodified-Since" support
Diffstat (limited to 'src/http/ngx_http_request.c')
-rw-r--r-- | src/http/ngx_http_request.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/http/ngx_http_request.c b/src/http/ngx_http_request.c index f1fab8a4f..55e220a31 100644 --- a/src/http/ngx_http_request.c +++ b/src/http/ngx_http_request.c @@ -88,6 +88,10 @@ ngx_http_header_t ngx_http_headers_in[] = { offsetof(ngx_http_headers_in_t, if_modified_since), ngx_http_process_unique_header_line }, + { ngx_string("If-Unmodified-Since"), + offsetof(ngx_http_headers_in_t, if_unmodified_since), + ngx_http_process_unique_header_line }, + { ngx_string("User-Agent"), offsetof(ngx_http_headers_in_t, user_agent), ngx_http_process_user_agent }, |