Files
coredns/plugin/bind/bind.go

18 lines
359 B
Go
Raw Normal View History

// Package bind allows binding to a specific interface instead of bind to all of them.
package bind
import (
"github.com/coredns/coredns/plugin"
)
func init() { plugin.Register("bind", setup) }
type bind struct {
Next plugin.Handler
addrs []string
except []string
}
// Name implements plugin.Handler.
func (b *bind) Name() string { return "bind" }