mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-03 16:57:38 -05:00
21 lines
432 B
Go
21 lines
432 B
Go
package dns
|
|
|
|
import (
|
|
"net"
|
|
|
|
"v2ray.com/core/app/log"
|
|
)
|
|
|
|
func (v *Config) GetInternalHosts() map[string]net.IP {
|
|
hosts := make(map[string]net.IP)
|
|
for domain, ipOrDomain := range v.GetHosts() {
|
|
address := ipOrDomain.AsAddress()
|
|
if address.Family().IsDomain() {
|
|
log.Trace(newError("ignoring domain address in static hosts: ", address.Domain()).AtWarning())
|
|
continue
|
|
}
|
|
hosts[domain] = address.IP()
|
|
}
|
|
return hosts
|
|
}
|