mirror of
https://gitclone.com/github.com/MetaCubeX/Clash.Meta
synced 2024-11-15 05:31:18 +08:00
33 lines
499 B
Go
33 lines
499 B
Go
package dns
|
|
|
|
import (
|
|
"errors"
|
|
"net"
|
|
)
|
|
|
|
var (
|
|
errIPNotFound = errors.New("ip not found")
|
|
)
|
|
|
|
// ResolveIP with a host, return ip
|
|
func ResolveIP(host string) (net.IP, error) {
|
|
if DefaultResolver != nil {
|
|
if DefaultResolver.ipv6 {
|
|
return DefaultResolver.ResolveIP(host)
|
|
}
|
|
return DefaultResolver.ResolveIPv4(host)
|
|
}
|
|
|
|
ip := net.ParseIP(host)
|
|
if ip != nil {
|
|
return ip, nil
|
|
}
|
|
|
|
ipAddr, err := net.ResolveIPAddr("ip", host)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return ipAddr.IP, nil
|
|
}
|