From: Igor Sysoev Date: Mon, 27 Aug 2007 15:40:19 +0000 (+0000) Subject: cancel keep-alive and lingering close on EOF X-Git-Tag: release-0.6.9~5 X-Git-Url: http://git.kaiwu.me/sitemap.xml?a=commitdiff_plain;h=db7b126db2c23ba5520cd786a2b40013d559960f;p=nginx.git cancel keep-alive and lingering close on EOF --- 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