changeset 1547:e114a16fc5be

add time and length to a HEAD request
author Igor Sysoev <igor@sysoev.ru>
date Fri, 28 Sep 2007 09:48:25 +0000
parents 2956fb9b7dcb
children a83aa8c53552
files src/http/modules/ngx_http_empty_gif_module.c
diffstat 1 files changed, 2 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/src/http/modules/ngx_http_empty_gif_module.c
+++ b/src/http/modules/ngx_http_empty_gif_module.c
@@ -127,6 +127,8 @@ ngx_http_empty_gif_handler(ngx_http_requ
 
     if (r->method == NGX_HTTP_HEAD) {
         r->headers_out.status = NGX_HTTP_OK;
+        r->headers_out.content_length_n = sizeof(ngx_empty_gif);
+        r->headers_out.last_modified_time = 23349600;
 
         return ngx_http_send_header(r);
     }