blob: 31b2bf70eca9de05f5200cffc10689e496a4dc0e [file] [log] [blame]
package netutils
import (
"net"
"github.com/docker/docker/libnetwork/types"
)
// FindAvailableNetwork returns a network from the passed list which does not
// overlap with existing interfaces in the system
func FindAvailableNetwork(list []*net.IPNet) (*net.IPNet, error) {
return nil, types.NotImplementedErrorf("not supported on freebsd")
}