12345678910111213141516171819202122 |
- package libnetwork
- import (
- windriver "github.com/docker/libnetwork/drivers/windows"
- "github.com/docker/libnetwork/options"
- "github.com/docker/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")
- }
|