- Fix to set the tcp handler event toggle flag back to default when

the handler structure is reused.
This commit is contained in:
W.C.A. Wijngaards 2020-10-19 12:55:43 +02:00
parent 8861fb17fa
commit 68c57314c4
2 changed files with 3 additions and 0 deletions

View file

@ -12,6 +12,8 @@
- Fix python documentation warning on functions.rst inplace_cb_reply.
- Fix dnstap test to wait for log timer to see if queries are logged.
- Log ip address when http session recv fails, eg. due to tls fail.
- Fix to set the tcp handler event toggle flag back to default when
the handler structure is reused.
16 October 2020: Wouter
- Fix that the out of order TCP processing does not limit the

View file

@ -965,6 +965,7 @@ comm_point_tcp_accept_callback(int fd, short event, void* arg)
/* clear leftover flags from previous use, and then set the
* correct event base for the event structure for libevent */
ub_event_free(c_hdl->ev->ev);
c_hdl->tcp_do_toggle_rw = 1;
if(c_hdl->type == comm_http) {
#ifdef HAVE_NGHTTP2