Files
coredns/plugin/any/setup.go
Immanuel Tikhonov 4c07a287da fix: reject invalid any and local config (#8133)
Signed-off-by: immanuwell <pchpr.00@list.ru>
2026-05-31 15:41:27 -07:00

29 lines
534 B
Go

package any
import (
"github.com/coredns/caddy"
"github.com/coredns/coredns/core/dnsserver"
"github.com/coredns/coredns/plugin"
)
func init() { plugin.Register("any", setup) }
func setup(c *caddy.Controller) error {
c.Next() // 'any'
if c.NextArg() {
return plugin.Error("any", c.ArgErr())
}
if c.NextBlock() {
return plugin.Error("any", c.Errf("unknown property '%s'", c.Val()))
}
a := Any{}
dnsserver.GetConfig(c).AddPlugin(func(next plugin.Handler) plugin.Handler {
a.Next = next
return a
})
return nil
}