v2ray-core/app/dns/config.go

21 lines
420 B
Go
Raw Normal View History

2016-05-16 00:25:34 -07:00
package dns
2015-12-06 11:00:10 +01:00
2016-01-15 15:23:12 +01:00
import (
2016-05-22 22:30:08 +02:00
"net"
2016-09-20 16:05:35 +02:00
"v2ray.com/core/common/log"
2016-01-15 15:23:12 +01:00
)
2016-11-27 17:01:44 +01:00
func (v *Config) GetInternalHosts() map[string]net.IP {
2016-09-20 16:05:35 +02:00
hosts := make(map[string]net.IP)
2016-11-27 17:01:44 +01:00
for domain, ipOrDomain := range v.GetHosts() {
2016-10-12 18:43:55 +02:00
address := ipOrDomain.AsAddress()
2016-09-20 16:05:35 +02:00
if address.Family().IsDomain() {
log.Warning("DNS: Ignoring domain address in static hosts: ", address.Domain())
continue
}
hosts[domain] = address.IP()
}
return hosts
2015-12-06 11:00:10 +01:00
}