- Fix #304: dnstap logging not recovering after dnstap process restarts

This commit is contained in:
Ralph Dolmans 2020-09-21 17:17:30 +02:00
parent c5f0ec36bb
commit 00fe4b0306
2 changed files with 5 additions and 0 deletions

View file

@ -1102,6 +1102,8 @@ static int dtio_read_accept_frame(struct dt_io_thread* dtio)
goto close_connection;
}
dtio->accept_frame_received = 1;
if(!dtio_add_output_event_write(dtio))
goto close_connection;
return 1;
} else {
/* unknow content type */

View file

@ -1,3 +1,6 @@
21 September 2020: Ralph
- Fix #304: dnstap logging not recovering after dnstap process restarts
21 September 2020: Wouter
- Merge PR #311 by luismerino: Dynlibmod leak.
- Error message is logged for dynlibmod malloc failures.