mirror of
https://github.com/NLnetLabs/unbound.git
synced 2026-01-21 22:22:56 -05:00
stream reuse, fix cleanup with streams in the connection table.
This commit is contained in:
parent
2d20edb39f
commit
f1c4a4d515
1 changed files with 2 additions and 1 deletions
|
|
@ -1509,7 +1509,8 @@ outside_network_delete(struct outside_network* outnet)
|
|||
size_t i;
|
||||
for(i=0; i<outnet->num_tcp; i++)
|
||||
if(outnet->tcp_conns[i]) {
|
||||
if(!outnet->tcp_conns[i]->query->
|
||||
if(outnet->tcp_conns[i]->query &&
|
||||
!outnet->tcp_conns[i]->query->
|
||||
on_tcp_waiting_list) {
|
||||
/* delete waiting_tcp elements that
|
||||
* the tcp conn is working on */
|
||||
|
|
|
|||
Loading…
Reference in a new issue