github.com/Prakhar-Agarwal-byte/moby@v0.0.0-20231027092010-a14e3e8ab87e/libnetwork/netutils/utils_freebsd.go (about) 1 package netutils 2 3 import ( 4 "net" 5 6 "github.com/Prakhar-Agarwal-byte/moby/libnetwork/types" 7 ) 8 9 // FindAvailableNetwork returns a network from the passed list which does not 10 // overlap with existing interfaces in the system 11 func FindAvailableNetwork(list []*net.IPNet) (*net.IPNet, error) { 12 return nil, types.NotImplementedErrorf("not supported on freebsd") 13 }