From ac0b9cdfe847041a8fd22f0c50a67afb8566c65d Mon Sep 17 00:00:00 2001 From: Frank Denis Date: Thu, 21 Jan 2021 14:35:06 +0100 Subject: [PATCH] In the query log, consider everything that's not UDP as TCP Fixes #1589 --- dnscrypt-proxy/plugin_query_log.go | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/dnscrypt-proxy/plugin_query_log.go b/dnscrypt-proxy/plugin_query_log.go index 36de29db..5a806647 100644 --- a/dnscrypt-proxy/plugin_query_log.go +++ b/dnscrypt-proxy/plugin_query_log.go @@ -58,10 +58,8 @@ func (plugin *PluginQueryLog) Eval(pluginsState *PluginsState, msg *dns.Msg) err var clientIPStr string if pluginsState.clientProto == "udp" { clientIPStr = (*pluginsState.clientAddr).(*net.UDPAddr).IP.String() - } else if pluginsState.clientProto == "tcp" { - clientIPStr = (*pluginsState.clientAddr).(*net.TCPAddr).IP.String() } else { - clientIPStr = "-" + clientIPStr = (*pluginsState.clientAddr).(*net.TCPAddr).IP.String() } qName := pluginsState.qName