From db7b126db2c23ba5520cd786a2b40013d559960f Mon Sep 17 00:00:00 2001 From: Igor Sysoev Date: Mon, 27 Aug 2007 15:40:19 +0000 Subject: [PATCH] cancel keep-alive and lingering close on EOF --- src/http/ngx_http_request.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/http/ngx_http_request.c b/src/http/ngx_http_request.c index f52a764e4..4d60d1381 100644 --- a/src/http/ngx_http_request.c +++ b/src/http/ngx_http_request.c @@ -1712,6 +1712,11 @@ ngx_http_finalize_request(ngx_http_request_t *r, ngx_int_t rc) return; } + if (r->connection->read->eof) { + ngx_http_close_request(r, 0); + return; + } + clcf = ngx_http_get_module_loc_conf(r, ngx_http_core_module); if (!ngx_terminate