We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a389067 commit 8b60840Copy full SHA for 8b60840
1 file changed
dnscrypt-proxy/plugin_cache.go
@@ -52,6 +52,9 @@ func (plugin *PluginCacheResponse) Eval(pluginsState *PluginsState, msg *dns.Msg
52
if msg.Rcode != dns.RcodeSuccess && msg.Rcode != dns.RcodeNameError && msg.Rcode != dns.RcodeNotAuth {
53
return nil
54
}
55
+ if msg.Truncated {
56
+ return nil
57
+ }
58
cacheKey, err := computeCacheKey(pluginsState, msg)
59
if err != nil {
60
return err
0 commit comments