github.com/rawahars/moby@v24.0.4+incompatible/libnetwork/netutils/utils_freebsd.go (about)

     1  package netutils
     2  
     3  import (
     4  	"net"
     5  
     6  	"github.com/docker/docker/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  }