mirror of
https://github.com/moby/moby.git
synced 2026-01-11 10:41:43 +00:00
21 lines
364 B
Go
21 lines
364 B
Go
//go:build windows
|
|
|
|
package libnetwork
|
|
|
|
import (
|
|
"context"
|
|
"net/netip"
|
|
)
|
|
|
|
// Stub implementations for DNS related functions
|
|
|
|
func (sb *Sandbox) setupResolutionFiles(_ context.Context) error {
|
|
return nil
|
|
}
|
|
|
|
func (sb *Sandbox) restoreHostsPath() {}
|
|
|
|
func (sb *Sandbox) restoreResolvConfPath() {}
|
|
|
|
func (sb *Sandbox) deleteHostsEntries(ifaceAddrs []netip.Addr) {}
|