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:
Frank Denis 2019-12-16 16:13:18 +01:00
parent aa5350c7fd
commit 66799c4159
6 changed files with 206 additions and 1 deletions

View file

@ -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 {