diff src/http/modules/proxy/ngx_http_proxy_handler.c @ 312:f5431a4bbc7d

nginx-0.0.3-2004-04-13-09:27:03 import
author Igor Sysoev <igor@sysoev.ru>
date Tue, 13 Apr 2004 05:27:03 +0000
parents 6b91bfbc4123
children 98f1a8028067
line wrap: on
line diff
--- a/src/http/modules/proxy/ngx_http_proxy_handler.c
+++ b/src/http/modules/proxy/ngx_http_proxy_handler.c
@@ -425,6 +425,10 @@ void ngx_http_proxy_check_broken_connect
 
     n = recv(c->fd, buf, 1, MSG_PEEK);
 
+    if (ev->write && n >= 0) {
+        return;
+    }
+
     if (n > 0) {
         if ((ngx_event_flags & NGX_USE_LEVEL_EVENT) && ev->active) {
             if (ngx_del_event(ev, NGX_READ_EVENT, 0) == NGX_ERROR) {