mirror of
https://github.com/DNSCrypt/dnscrypt-proxy.git
synced 2025-04-05 22:27:37 +03:00
Add DNS64 support
This commit is contained in:
parent
d766dc8bf7
commit
f48b13f7b8
5 changed files with 291 additions and 1 deletions
|
@ -135,6 +135,9 @@ func (proxy *Proxy) InitPluginsGlobals() error {
|
|||
if len(proxy.blockIPFile) != 0 {
|
||||
*responsePlugins = append(*responsePlugins, Plugin(new(PluginBlockIP)))
|
||||
}
|
||||
if len(proxy.dns64Resolvers) != 0 || len(proxy.dns64Prefixes) != 0 {
|
||||
*responsePlugins = append(*responsePlugins, Plugin(new(PluginDns64)))
|
||||
}
|
||||
if proxy.cache {
|
||||
*responsePlugins = append(*responsePlugins, Plugin(new(PluginCacheResponse)))
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue