From: Wouter Wijngaards Date: Mon, 8 Oct 2018 13:27:53 +0000 (+0000) Subject: - Squelch log of failed to tcp initiate after TCP Fastopen failure. X-Git-Tag: release-1.8.2rc1~55 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=2d28fba3bf615c07b9ebdd592705fc853b3241fc;p=thirdparty%2Funbound.git - Squelch log of failed to tcp initiate after TCP Fastopen failure. git-svn-id: file:///svn/unbound/trunk@4937 be551aaa-1e26-0410-a405-d3ace91eadb9 --- diff --git a/doc/Changelog b/doc/Changelog index c2bfde349..4cce065ba 100644 --- a/doc/Changelog +++ b/doc/Changelog @@ -1,3 +1,6 @@ +8 October 2018: Wouter + - Squelch log of failed to tcp initiate after TCP Fastopen failure. + 5 October 2018: Wouter - Squelch EADDRNOTAVAIL errors when the interface goes away, this omits 'can't assign requested address' errors unless diff --git a/services/outside_network.c b/services/outside_network.c index e2c59c461..e0684fc66 100644 --- a/services/outside_network.c +++ b/services/outside_network.c @@ -1876,7 +1876,7 @@ serviced_tcp_initiate(struct serviced_query* sq, sldns_buffer* buff) if(!sq->pending) { /* delete from tree so that a retry by above layer does not * clash with this entry */ - log_err("serviced_tcp_initiate: failed to send tcp query"); + verbose(VERB_ALGO, "serviced_tcp_initiate: failed to send tcp query"); serviced_callbacks(sq, NETEVENT_CLOSED, NULL, NULL); } }