- Fix update, with write event check with streamreuse and fastopen.

This commit is contained in:
W.C.A. Wijngaards 2020-12-02 16:17:26 +01:00
parent 0502ab3026
commit 9eeb95a960
2 changed files with 2 additions and 1 deletions

View file

@ -7,6 +7,7 @@
handler and not print so frequently when invoked in sequence.
- Fix on windows to ignore connection failure on UDP, unless verbose.
- Fix for #283: fix stream reuse and tcp fast open.
- Fix update, with write event check with streamreuse and fastopen.
1 December 2020: Wouter
- Fix #358: Squelch udp connect 'no route to host' errors on low

View file

@ -2066,7 +2066,7 @@ comm_point_tcp_handle_callback(int fd, short event, void* arg)
}
if(event&UB_EV_READ
#ifdef USE_MSG_FASTOPEN
&& !c->tcp_do_fastopen
&& !(c->tcp_do_fastopen && (event&UB_EV_WRITE))
#endif
) {
int has_tcpq = (c->tcp_req_info != NULL);