mirror of
https://github.com/coredns/coredns.git
synced 2025-10-28 08:44:17 -04:00
24 lines
398 B
Go
24 lines
398 B
Go
|
|
package bind
|
||
|
|
|
||
|
|
import (
|
||
|
|
"fmt"
|
||
|
|
"net"
|
||
|
|
|
||
|
|
"github.com/miekg/coredns/core/dnsserver"
|
||
|
|
|
||
|
|
"github.com/mholt/caddy"
|
||
|
|
)
|
||
|
|
|
||
|
|
func setupBind(c *caddy.Controller) error {
|
||
|
|
config := dnsserver.GetConfig(c)
|
||
|
|
for c.Next() {
|
||
|
|
if !c.Args(&config.ListenHost) {
|
||
|
|
return c.ArgErr()
|
||
|
|
}
|
||
|
|
}
|
||
|
|
if net.ParseIP(config.ListenHost) == nil {
|
||
|
|
return fmt.Errorf("not a valid IP address: %s", config.ListenHost)
|
||
|
|
}
|
||
|
|
return nil
|
||
|
|
}
|