diff options
author | Igor Sysoev <igor@sysoev.ru> | 2007-01-18 21:11:23 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2007-01-18 21:11:23 +0000 |
commit | 56331ba4993b02ce6c5ac67b8fee631cac53c652 (patch) | |
tree | e0270c22b21bd957a3b306e57a56d439d54ba362 /src/http/ngx_http_request.c | |
parent | f5a359bdec93bb4dbe38c8b13fff957a71b0f896 (diff) | |
download | nginx-56331ba4993b02ce6c5ac67b8fee631cac53c652.tar.gz nginx-56331ba4993b02ce6c5ac67b8fee631cac53c652.zip |
the "Overwrite" header line
Diffstat (limited to 'src/http/ngx_http_request.c')
-rw-r--r-- | src/http/ngx_http_request.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/http/ngx_http_request.c b/src/http/ngx_http_request.c index 74ca4b841..db64c5ba1 100644 --- a/src/http/ngx_http_request.c +++ b/src/http/ngx_http_request.c @@ -141,6 +141,9 @@ ngx_http_header_t ngx_http_headers_in[] = { { ngx_string("Destination"), offsetof(ngx_http_headers_in_t, destination), ngx_http_process_header_line }, + { ngx_string("Overwrite"), offsetof(ngx_http_headers_in_t, overwrite), + ngx_http_process_header_line }, + { ngx_string("Date"), offsetof(ngx_http_headers_in_t, date), ngx_http_process_header_line }, #endif |