comparison src/http/ngx_http_headers.c @ 315:39b6f2df45c0

nginx-0.0.3-2004-04-14-21:44:28 import
author Igor Sysoev <igor@sysoev.ru>
date Wed, 14 Apr 2004 17:44:28 +0000
parents 98f1a8028067
children
comparison
equal deleted inserted replaced
314:d71c87d11b16 315:39b6f2df45c0
51 { ngx_string("Location"), offsetof(ngx_http_headers_out_t, location) }, 51 { ngx_string("Location"), offsetof(ngx_http_headers_out_t, location) },
52 { ngx_string("Last-Modified"), 52 { ngx_string("Last-Modified"),
53 offsetof(ngx_http_headers_out_t, last_modified) }, 53 offsetof(ngx_http_headers_out_t, last_modified) },
54 { ngx_string("Accept-Ranges"), 54 { ngx_string("Accept-Ranges"),
55 offsetof(ngx_http_headers_out_t, accept_ranges) }, 55 offsetof(ngx_http_headers_out_t, accept_ranges) },
56 { ngx_string("Expires"), offsetof(ngx_http_headers_out_t, expires) },
57 { ngx_string("Cache-Control"),
58 offsetof(ngx_http_headers_out_t, cache_control) },
59 { ngx_string("ETag"), offsetof(ngx_http_headers_out_t, etag) },
56 60
57 { ngx_null_string, 0 } 61 { ngx_null_string, 0 }
58 }; 62 };
59 63
60 64