This commit is contained in:
vivekkoya 2025-05-24 19:36:32 +08:00 committed by GitHub
commit 5df7d2115b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -15,18 +15,14 @@ func DetectedHostAddress() string {
return "" return ""
} }
if v4Address := selectIpV4(netInterfaces, true); v4Address != "" { if v4Address := selectIpV4(netInterfaces); v4Address != "" {
return v4Address return v4Address
} }
if v6Address := selectIpV4(netInterfaces, false); v6Address != "" {
return v6Address
}
return "localhost" return "localhost"
} }
func selectIpV4(netInterfaces []net.Interface, isIpV4 bool) string { func selectIpV4(netInterfaces []net.Interface) string {
for _, netInterface := range netInterfaces { for _, netInterface := range netInterfaces {
if (netInterface.Flags & net.FlagUp) == 0 { if (netInterface.Flags & net.FlagUp) == 0 {
continue continue
@ -38,15 +34,9 @@ func selectIpV4(netInterfaces []net.Interface, isIpV4 bool) string {
for _, a := range addrs { for _, a := range addrs {
if ipNet, ok := a.(*net.IPNet); ok && !ipNet.IP.IsLoopback() { if ipNet, ok := a.(*net.IPNet); ok && !ipNet.IP.IsLoopback() {
if isIpV4 { if ipNet.IP.To4() != nil && ipNet.IP.To16() == nil || ipNet.IP.To16() != nil && ipNet.IP.To4() == nil{
if ipNet.IP.To4() != nil {
return ipNet.IP.String() return ipNet.IP.String()
} }
} else {
if ipNet.IP.To16() != nil {
return ipNet.IP.String()
}
}
} }
} }
} }