aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRuslan Ermilov <ru@nginx.com>2012-12-19 10:30:45 +0000
committerRuslan Ermilov <ru@nginx.com>2012-12-19 10:30:45 +0000
commit30390ea4927ca4d8421ad98a6eba51d5465fc549 (patch)
tree9439d2845a8a46d22cf4c14faa31412dfd588ee3 /src
parent4bad9d0505bb14d0ec78333ad0c257a21bee1cfa (diff)
downloadnginx-30390ea4927ca4d8421ad98a6eba51d5465fc549.tar.gz
nginx-30390ea4927ca4d8421ad98a6eba51d5465fc549.zip
Slightly optimized code that handles special headers in "add_header".
Diffstat (limited to 'src')
-rw-r--r--src/http/modules/ngx_http_headers_filter_module.c50
1 files changed, 21 insertions, 29 deletions
diff --git a/src/http/modules/ngx_http_headers_filter_module.c b/src/http/modules/ngx_http_headers_filter_module.c
index 5b85e59cd..336f966fe 100644
--- a/src/http/modules/ngx_http_headers_filter_module.c
+++ b/src/http/modules/ngx_http_headers_filter_module.c
@@ -74,7 +74,9 @@ static ngx_http_set_header_t ngx_http_set_headers[] = {
{ ngx_string("Cache-Control"), 0, ngx_http_add_cache_control },
- { ngx_string("Last-Modified"), 0, ngx_http_set_last_modified },
+ { ngx_string("Last-Modified"),
+ offsetof(ngx_http_headers_out_t, last_modified),
+ ngx_http_set_last_modified },
{ ngx_string("ETag"),
offsetof(ngx_http_headers_out_t, etag),
@@ -372,27 +374,12 @@ static ngx_int_t
ngx_http_set_last_modified(ngx_http_request_t *r, ngx_http_header_val_t *hv,
ngx_str_t *value)
{
- ngx_table_elt_t *h;
-
- ngx_http_clear_last_modified(r);
-
- if (value->len == 0) {
- return NGX_OK;
- }
-
- r->headers_out.last_modified_time = ngx_http_parse_time(value->data,
- value->len);
-
- h = ngx_list_push(&r->headers_out.headers);
- if (h == NULL) {
+ if (ngx_http_set_response_header(r, hv, value) != NGX_OK) {
return NGX_ERROR;
}
- r->headers_out.last_modified = h;
-
- h->hash = 1;
- h->key = hv->key;
- h->value = *value;
+ r->headers_out.last_modified_time =
+ (value->len) ? ngx_http_parse_time(value->data, value->len) : -1;
return NGX_OK;
}
@@ -406,21 +393,26 @@ ngx_http_set_response_header(ngx_http_request_t *r, ngx_http_header_val_t *hv,
old = (ngx_table_elt_t **) ((char *) &r->headers_out + hv->offset);
- if (*old) {
- (*old)->hash = 0;
- *old = NULL;
- }
-
if (value->len == 0) {
+ if (*old) {
+ (*old)->hash = 0;
+ *old = NULL;
+ }
+
return NGX_OK;
}
- h = ngx_list_push(&r->headers_out.headers);
- if (h == NULL) {
- return NGX_ERROR;
- }
+ if (*old) {
+ h = *old;
- *old = h;
+ } else {
+ h = ngx_list_push(&r->headers_out.headers);
+ if (h == NULL) {
+ return NGX_ERROR;
+ }
+
+ *old = h;
+ }
h->hash = 1;
h->key = hv->key;