Browse Source

core: tcp - reset connection write flag if io_watch_chg() for pollout fails

- it can loop otherwise in trying to see if write can be done
Daniel-Constantin Mierla 10 năm trước cách đây
mục cha
commit
d36734d658
1 tập tin đã thay đổi với 1 bổ sung0 xóa
  1. 1 0
      tcp_main.c

+ 1 - 0
tcp_main.c

@@ -4113,6 +4113,7 @@ inline static int handle_tcpconn_ev(struct tcp_connection* tcpconn, short ev,
 			if (unlikely(io_watch_chg(&io_h, tcpconn->s, POLLOUT, fd_i)==-1)){
 				LM_ERR("io_watch_chg(2) failed: for %p, fd %d\n",
 							tcpconn, tcpconn->s);
+				tcpconn->flags&=~F_CONN_WRITE_W;
 				goto error;
 			}
 		}else