mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
9871032e4d
Signed-off-by: msabansal <sabansal@microsoft.com>
16 lines
391 B
Go
16 lines
391 B
Go
package libnetwork
|
|
|
|
import (
|
|
"github.com/docker/libnetwork/drivers/null"
|
|
"github.com/docker/libnetwork/drivers/windows"
|
|
)
|
|
|
|
func getInitializers() []initializer {
|
|
return []initializer{
|
|
{null.Init, "null"},
|
|
{windows.GetInit("Transparent"), "Transparent"},
|
|
{windows.GetInit("L2Bridge"), "L2Bridge"},
|
|
{windows.GetInit("L2Tunnel"), "L2Tunnel"},
|
|
{windows.GetInit("NAT"), "NAT"},
|
|
}
|
|
}
|