github.com/Prakhar-Agarwal-byte/moby@v0.0.0-20231027092010-a14e3e8ab87e/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  }