mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
021358749b
following advice from https://github.com/chrislusf/seaweedfs/issues/1671
36 lines
668 B
Go
36 lines
668 B
Go
package util
|
|
|
|
import (
|
|
"net"
|
|
|
|
"github.com/chrislusf/seaweedfs/weed/glog"
|
|
)
|
|
|
|
func DetectedHostAddress() string {
|
|
netInterfaces, err := net.Interfaces()
|
|
if err != nil {
|
|
glog.V(0).Infof("failed to detect net interfaces: %v", err)
|
|
return ""
|
|
}
|
|
|
|
for _, netInterface := range netInterfaces {
|
|
if (netInterface.Flags & net.FlagUp) == 0 {
|
|
continue
|
|
}
|
|
addrs, err := netInterface.Addrs()
|
|
if err != nil {
|
|
glog.V(0).Infof("get interface addresses: %v", err)
|
|
}
|
|
|
|
for _, a := range addrs {
|
|
if ipNet, ok := a.(*net.IPNet); ok && !ipNet.IP.IsLoopback() {
|
|
if ipNet.IP.To4() != nil {
|
|
return ipNet.IP.String()
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
return "localhost"
|
|
}
|