mirror of
https://github.com/NLnetLabs/unbound.git
synced 2026-01-09 00:02:55 -05:00
- Fix update, with write event check with streamreuse and fastopen.
This commit is contained in:
parent
0502ab3026
commit
9eeb95a960
2 changed files with 2 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in a new issue