2015-10-12 18:19:25 -04:00
|
|
|
package libnetwork
|
|
|
|
|
2016-11-04 16:26:50 -04:00
|
|
|
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)
|
|
|
|
}
|
2015-10-12 18:19:25 -04:00
|
|
|
|
|
|
|
func (c *controller) createGWNetwork() (Network, error) {
|
|
|
|
return nil, types.NotImplementedErrorf("default gateway functionality is not implemented in windows")
|
|
|
|
}
|