mirror of
https://github.com/DNSCrypt/dnscrypt-proxy.git
synced 2025-04-05 14:17:36 +03:00
Add the ability to block undelegated DNS zones
Using the generic pattern matcher as a first iteration, but we can save some memory and CPU cycles by building and using a critbit tree directly.
This commit is contained in:
parent
aa5350c7fd
commit
66799c4159
6 changed files with 206 additions and 1 deletions
|
@ -118,6 +118,9 @@ func (proxy *Proxy) InitPluginsGlobals() error {
|
|||
if proxy.pluginBlockUnqualified {
|
||||
*queryPlugins = append(*queryPlugins, Plugin(new(PluginBlockUnqualified)))
|
||||
}
|
||||
if proxy.pluginBlockUndelegated {
|
||||
*queryPlugins = append(*queryPlugins, Plugin(new(PluginBlockUndelegated)))
|
||||
}
|
||||
|
||||
responsePlugins := &[]Plugin{}
|
||||
if len(proxy.nxLogFile) != 0 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue