mirror of
https://github.com/DNSCrypt/dnscrypt-proxy.git
synced 2025-04-05 14:17:36 +03:00
Truncated packets cannot be parsed by miekg/dns; clear the error flag when it happens
Fixes #177
This commit is contained in:
parent
aea15a484e
commit
636f92bae0
1 changed files with 3 additions and 0 deletions
|
@ -155,6 +155,9 @@ func (pluginsState *PluginsState) ApplyResponsePlugins(pluginsGlobals *PluginsGl
|
|||
pluginsState.action = PluginsActionForward
|
||||
msg := dns.Msg{}
|
||||
if err := msg.Unpack(packet); err != nil {
|
||||
if len(packet) >= MinDNSPacketSize && HasTCFlag(packet) {
|
||||
err = nil
|
||||
}
|
||||
return packet, err
|
||||
}
|
||||
pluginsGlobals.RLock()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue