mirror of
https://github.com/DNSCrypt/dnscrypt-proxy.git
synced 2025-04-05 22:27:37 +03:00
block_name plugin: also check names found in CNAME records
This commit is contained in:
parent
1152491b2d
commit
67c7254dc5
2 changed files with 97 additions and 41 deletions
|
@ -120,6 +120,9 @@ func (proxy *Proxy) InitPluginsGlobals() error {
|
|||
if len(proxy.nxLogFile) != 0 {
|
||||
*responsePlugins = append(*responsePlugins, Plugin(new(PluginNxLog)))
|
||||
}
|
||||
if len(proxy.blockNameFile) != 0 {
|
||||
*responsePlugins = append(*responsePlugins, Plugin(new(PluginBlockNameResponse)))
|
||||
}
|
||||
if len(proxy.blockIPFile) != 0 {
|
||||
*responsePlugins = append(*responsePlugins, Plugin(new(PluginBlockIP)))
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue