2015-10-04 20:02:02 -07:00
|
|
|
package libnetwork
|
|
|
|
|
2016-11-09 18:01:07 -08: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-04 20:02:02 -07:00
|
|
|
|
|
|
|
func (c *controller) createGWNetwork() (Network, error) {
|
|
|
|
return nil, types.NotImplementedErrorf("default gateway functionality is not implemented in windows")
|
|
|
|
}
|