2016-01-29 17:08:11 -08:00
|
|
|
// +build windows
|
|
|
|
|
|
|
|
package libnetwork
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/docker/libnetwork/etchosts"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Stub implementations for DNS related functions
|
|
|
|
|
2016-06-09 16:05:11 -07:00
|
|
|
func (sb *sandbox) startResolver(bool) {
|
2016-01-29 17:08:11 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
func (sb *sandbox) setupResolutionFiles() error {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2016-06-10 17:32:19 -07:00
|
|
|
func (sb *sandbox) restorePath() {
|
|
|
|
}
|
|
|
|
|
2016-01-29 17:08:11 -08:00
|
|
|
func (sb *sandbox) updateHostsFile(ifaceIP string) error {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (sb *sandbox) addHostsEntries(recs []etchosts.Record) {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
func (sb *sandbox) deleteHostsEntries(recs []etchosts.Record) {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
func (sb *sandbox) updateDNS(ipv6Enabled bool) error {
|
|
|
|
return nil
|
|
|
|
}
|