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

     1  package netutils
     2  
     3  import (
     4  	"net"
     5  )
     6  
     7  // FindAvailableNetwork returns a network from the passed list which does not
     8  // overlap with existing interfaces in the system
     9  //
    10  // TODO : Use appropriate windows APIs to identify non-overlapping subnets
    11  func FindAvailableNetwork(list []*net.IPNet) (*net.IPNet, error) {
    12  	return nil, nil
    13  }