From: Ralph Dolmans Date: Wed, 15 Jul 2020 15:31:18 +0000 (+0200) Subject: Log dnstap connection close due to unknown content type. X-Git-Tag: 1.11.0rc1~14^2~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b280527e3e72bd0b2f49a1ed5aa8ba7e38d9dd88;p=thirdparty%2Funbound.git Log dnstap connection close due to unknown content type. --- diff --git a/dnstap/dtstream.c b/dnstap/dtstream.c index bface6b06..57fbf9a78 100644 --- a/dnstap/dtstream.c +++ b/dnstap/dtstream.c @@ -1120,6 +1120,9 @@ static int dtio_read_accept_frame(struct dt_io_thread* dtio) return 1; } else { /* unknow content type */ + verbose(VERB_ALGO, "dnstap: ACCEPT frames " + "contains unknown content type, " + "closing connection"); goto close_connection; } }