moby/libnetwork/network_unix.go
Sebastiaan van Stijn 64c6f72988
libnetwork: remove Network interface
There's only one implementation; drop the interface and use the
concrete type instead.

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2023-07-22 11:56:41 +02:00

14 lines
275 B
Go

//go:build !windows
package libnetwork
import "github.com/docker/docker/libnetwork/ipamapi"
// Stub implementations for DNS related functions
func (n *Network) startResolver() {
}
func defaultIpamForNetworkType(networkType string) string {
return ipamapi.DefaultIPAM
}