mirror of
https://github.com/moby/moby.git
synced 2026-01-11 18:51:37 +00:00
22 lines
581 B
Go
22 lines
581 B
Go
package libnetwork
|
|
|
|
import (
|
|
windriver "github.com/docker/docker/daemon/libnetwork/drivers/windows"
|
|
"github.com/docker/docker/daemon/libnetwork/options"
|
|
"github.com/docker/docker/daemon/libnetwork/types"
|
|
)
|
|
|
|
const libnGWNetwork = "nat"
|
|
|
|
func getPlatformOption() EndpointOption {
|
|
epOption := options.Generic{
|
|
windriver.DisableICC: true,
|
|
windriver.DisableDNS: true,
|
|
}
|
|
return EndpointOptionGeneric(epOption)
|
|
}
|
|
|
|
func (c *Controller) createGWNetwork() (*Network, error) {
|
|
return nil, types.NotImplementedErrorf("default gateway functionality is not implemented in windows")
|
|
}
|