moby--moby/daemon/cluster/listen_addr_others.go

11 lines
221 B
Go

//go:build !linux
// +build !linux
package cluster // import "github.com/docker/docker/daemon/cluster"
import "net"
func (c *Cluster) resolveSystemAddr() (net.IP, error) {
return c.resolveSystemAddrViaSubnetCheck()
}