summaryrefslogtreecommitdiff
path: root/libnetwork/netutils/utils_windows.go
blob: b88e3ebe65d008131b30c5c25d13ad8c384a6cb1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package netutils

import (
	"net"
)

// FindAvailableNetwork returns a network from the passed list which does not
// overlap with existing interfaces in the system
//
// TODO : Use appropriate windows APIs to identify non-overlapping subnets
func FindAvailableNetwork(list []*net.IPNet) (*net.IPNet, error) {
	return nil, nil
}