blob: 31b2bf70eca9de05f5200cffc10689e496a4dc0e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
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")
}
|