diff src/http/modules/ngx_http_flv_module.c @ 4748:192f54280a7a

Entity tags: set for static respones.
author Maxim Dounin <mdounin@mdounin.ru>
date Mon, 09 Jul 2012 00:13:06 +0000
parents 2b6cb7528409
children 99934aade555
line wrap: on
line diff
--- a/src/http/modules/ngx_http_flv_module.c
+++ b/src/http/modules/ngx_http_flv_module.c
@@ -194,6 +194,10 @@ ngx_http_flv_handler(ngx_http_request_t 
     r->headers_out.content_length_n = len;
     r->headers_out.last_modified_time = of.mtime;
 
+    if (ngx_http_set_etag(r) != NGX_OK) {
+        return NGX_HTTP_INTERNAL_SERVER_ERROR;
+    }
+
     if (ngx_http_set_content_type(r) != NGX_OK) {
         return NGX_HTTP_INTERNAL_SERVER_ERROR;
     }