mirror of
https://github.com/NLnetLabs/unbound.git
synced 2025-12-20 23:00:56 -05:00
- Fix to set the tcp handler event toggle flag back to default when
the handler structure is reused.
This commit is contained in:
parent
8861fb17fa
commit
68c57314c4
2 changed files with 3 additions and 0 deletions
|
|
@ -12,6 +12,8 @@
|
||||||
- Fix python documentation warning on functions.rst inplace_cb_reply.
|
- Fix python documentation warning on functions.rst inplace_cb_reply.
|
||||||
- Fix dnstap test to wait for log timer to see if queries are logged.
|
- 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.
|
- 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
|
16 October 2020: Wouter
|
||||||
- Fix that the out of order TCP processing does not limit the
|
- Fix that the out of order TCP processing does not limit the
|
||||||
|
|
|
||||||
|
|
@ -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
|
/* clear leftover flags from previous use, and then set the
|
||||||
* correct event base for the event structure for libevent */
|
* correct event base for the event structure for libevent */
|
||||||
ub_event_free(c_hdl->ev->ev);
|
ub_event_free(c_hdl->ev->ev);
|
||||||
|
c_hdl->tcp_do_toggle_rw = 1;
|
||||||
|
|
||||||
if(c_hdl->type == comm_http) {
|
if(c_hdl->type == comm_http) {
|
||||||
#ifdef HAVE_NGHTTP2
|
#ifdef HAVE_NGHTTP2
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue