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 4862bfe commit 3ba850cCopy full SHA for 3ba850c
1 file changed
dnscrypt-proxy/plugin_cache.go
@@ -41,6 +41,9 @@ func computeCacheKey(pluginsState *PluginsState, msg *dns.Msg) [32]byte {
41
if pluginsState.dnssec {
42
tmp[4] = 1
43
}
44
+ if msg.CheckingDisabled {
45
+ tmp[4] |= 2
46
+ }
47
h.Write(tmp[:])
48
normalizedRawQName := []byte(question.Header().Name)
49
NormalizeRawQName(&normalizedRawQName)
0 commit comments