diff options
author | Igor Sysoev <igor@sysoev.ru> | 2011-08-01 13:08:03 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2011-08-01 13:08:03 +0000 |
commit | 41c8a1d27f477887862a70d28044b9e5eea808ab (patch) | |
tree | 49626ecdb5d6b7f8f30232c1b9e15291200b093b /src/http/ngx_http_request.c | |
parent | bd7dfe44c57743fe28ef00af138a750088f5dff0 (diff) | |
download | nginx-41c8a1d27f477887862a70d28044b9e5eea808ab.tar.gz nginx-41c8a1d27f477887862a70d28044b9e5eea808ab.zip |
do not send RST on normal lingering close read timeout,
if reset_timedout_connection is on
patch by Maxim Dounin
Diffstat (limited to 'src/http/ngx_http_request.c')
-rw-r--r-- | src/http/ngx_http_request.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/http/ngx_http_request.c b/src/http/ngx_http_request.c index 3a21111fa..bcd5eb827 100644 --- a/src/http/ngx_http_request.c +++ b/src/http/ngx_http_request.c @@ -2773,7 +2773,6 @@ ngx_http_lingering_close_handler(ngx_event_t *rev) "http lingering close handler"); if (rev->timedout) { - c->timedout = 1; ngx_http_close_request(r, 0); return; } |