mirror of
https://github.com/DNSCrypt/dnscrypt-proxy.git
synced 2025-01-01 00:57:32 +01:00
Add a default list of buggy servers
This commit is contained in:
parent
6dcd872385
commit
b03e7f993f
@ -127,6 +127,9 @@ func newConfig() Config {
|
||||
RefusedCodeInResponses: false,
|
||||
LBEstimator: true,
|
||||
BlockedQueryResponse: "hinfo",
|
||||
BrokenImplementations: BrokenImplementationsConfig{
|
||||
BrokenQueryPadding: []string{"cisco", "cisco-ipv6", "cisco-familyshield"},
|
||||
},
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -302,7 +302,7 @@ func fetchDNSCryptServerInfo(proxy *Proxy, name string, stamp stamps.ServerStamp
|
||||
for _, buggyServerName := range proxy.serversWithBrokenQueryPadding {
|
||||
if buggyServerName == name {
|
||||
knownBugs.incorrectPadding = true
|
||||
dlog.Infof("Known bug in [%v]: padding is not correctly implemented", name)
|
||||
dlog.Infof("Known bug in [%v]: padded queries are not correctly parsed", name)
|
||||
break
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user