network_unix.go 287 B

123456789101112131415
  1. //go:build !windows
  2. // +build !windows
  3. package libnetwork
  4. import "github.com/docker/libnetwork/ipamapi"
  5. // Stub implementations for DNS related functions
  6. func (n *network) startResolver() {
  7. }
  8. func defaultIpamForNetworkType(networkType string) string {
  9. return ipamapi.DefaultIPAM
  10. }