github.com/khulnasoft-lab/khulnasoft@v26.0.1-0.20240328202558-330a6f959fe0+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  }