mirror of
https://github.com/nginx/nginx.git
synced 2024-12-04 13:59:00 +08:00
the "Overwrite" header line
This commit is contained in:
parent
f5a359bdec
commit
56331ba499
@ -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
|
||||
|
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user