comparison src/http/ngx_http_request.c @ 1630:9706372f8916

If-Range support
author Igor Sysoev <igor@sysoev.ru>
date Fri, 09 Nov 2007 15:41:35 +0000
parents 4435ca2e467d
children 02a22cd5282a
comparison
equal deleted inserted replaced
1629:12a656452ad1 1630:9706372f8916
93 offsetof(ngx_http_headers_in_t, content_type), 93 offsetof(ngx_http_headers_in_t, content_type),
94 ngx_http_process_header_line }, 94 ngx_http_process_header_line },
95 95
96 { ngx_string("Range"), offsetof(ngx_http_headers_in_t, range), 96 { ngx_string("Range"), offsetof(ngx_http_headers_in_t, range),
97 ngx_http_process_header_line }, 97 ngx_http_process_header_line },
98
99 { ngx_string("If-Range"),
100 offsetof(ngx_http_headers_in_t, if_range),
101 ngx_http_process_unique_header_line },
98 102
99 { ngx_string("Transfer-Encoding"), 103 { ngx_string("Transfer-Encoding"),
100 offsetof(ngx_http_headers_in_t, transfer_encoding), 104 offsetof(ngx_http_headers_in_t, transfer_encoding),
101 ngx_http_process_header_line }, 105 ngx_http_process_header_line },
102 106