the "Overwrite" header line

This commit is contained in:
Igor Sysoev 2007-01-18 21:11:23 +00:00
parent f5a359bdec
commit 56331ba499
2 changed files with 4 additions and 0 deletions

View File

@ -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

View File

@ -194,6 +194,7 @@ typedef struct {
#if (NGX_HTTP_DAV)
ngx_table_elt_t *depth;
ngx_table_elt_t *destination;
ngx_table_elt_t *overwrite;
ngx_table_elt_t *date;
#endif