mirror of
https://github.com/DNSCrypt/dnscrypt-proxy.git
synced 2025-04-04 21:57:44 +03:00
Force clear the AD bit unless the DO bit was also set
This commit is contained in:
parent
ee1c0fed93
commit
1674bb1742
2 changed files with 4 additions and 0 deletions
|
@ -17,6 +17,7 @@ func EmptyResponseFromMessage(srcMsg *dns.Msg) *dns.Msg {
|
|||
}
|
||||
dstMsg.RecursionDesired = false
|
||||
dstMsg.CheckingDisabled = false
|
||||
dstMsg.AuthenticatedData = false
|
||||
dstMsg.Answer = make([]dns.RR, 0)
|
||||
dstMsg.Ns = make([]dns.RR, 0)
|
||||
dstMsg.Extra = make([]dns.RR, 0)
|
||||
|
|
|
@ -97,6 +97,9 @@ func (plugin *PluginForward) Eval(pluginsState *PluginsState, msg *dns.Msg) erro
|
|||
if err != nil {
|
||||
return err
|
||||
}
|
||||
if edns0 := respMsg.IsEdns0(); edns0 == nil || !edns0.Do() {
|
||||
respMsg.AuthenticatedData = false
|
||||
}
|
||||
pluginsState.synthResponse = respMsg
|
||||
pluginsState.action = PluginsActionSynth
|
||||
return nil
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue