mirror of
https://github.com/DNSCrypt/dnscrypt-proxy.git
synced 2025-04-06 06:37:36 +03:00
Handle captive portal names after coldstart
This commit is contained in:
parent
c308727d15
commit
f245189f02
4 changed files with 125 additions and 43 deletions
|
@ -93,6 +93,9 @@ type PluginsState struct {
|
|||
func (proxy *Proxy) InitPluginsGlobals() error {
|
||||
queryPlugins := &[]Plugin{}
|
||||
|
||||
if proxy.captivePortalMap != nil {
|
||||
*queryPlugins = append(*queryPlugins, Plugin(new(PluginCaptivePortal)))
|
||||
}
|
||||
if len(proxy.queryMeta) != 0 {
|
||||
*queryPlugins = append(*queryPlugins, Plugin(new(PluginQueryMeta)))
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue