mirror of
https://github.com/DNSCrypt/dnscrypt-proxy.git
synced 2025-04-05 14:17:36 +03:00
New feature: query_meta
This commit is contained in:
parent
6b1966b38f
commit
776e0d7ccc
6 changed files with 61 additions and 0 deletions
|
@ -83,6 +83,10 @@ type PluginsState struct {
|
|||
|
||||
func InitPluginsGlobals(pluginsGlobals *PluginsGlobals, proxy *Proxy) error {
|
||||
queryPlugins := &[]Plugin{}
|
||||
|
||||
if len(proxy.queryMeta) != 0 {
|
||||
*queryPlugins = append(*queryPlugins, Plugin(new(PluginQueryMeta)))
|
||||
}
|
||||
if len(proxy.whitelistNameFile) != 0 {
|
||||
*queryPlugins = append(*queryPlugins, Plugin(new(PluginWhitelistName)))
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue