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 aea15a4 commit 636f92bCopy full SHA for 636f92b
dnscrypt-proxy/plugins.go
@@ -155,6 +155,9 @@ func (pluginsState *PluginsState) ApplyResponsePlugins(pluginsGlobals *PluginsGl
155
pluginsState.action = PluginsActionForward
156
msg := dns.Msg{}
157
if err := msg.Unpack(packet); err != nil {
158
+ if len(packet) >= MinDNSPacketSize && HasTCFlag(packet) {
159
+ err = nil
160
+ }
161
return packet, err
162
}
163
pluginsGlobals.RLock()
0 commit comments