mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
576267bfb9
Signed-off-by: Madhu Venugopal <madhu@docker.com>
23 lines
580 B
Go
23 lines
580 B
Go
package libnetwork
|
|
|
|
import (
|
|
"github.com/docker/libnetwork/drvregistry"
|
|
"github.com/docker/libnetwork/ipamapi"
|
|
builtinIpam "github.com/docker/libnetwork/ipams/builtin"
|
|
nullIpam "github.com/docker/libnetwork/ipams/null"
|
|
remoteIpam "github.com/docker/libnetwork/ipams/remote"
|
|
)
|
|
|
|
func initIPAMDrivers(r *drvregistry.DrvRegistry, lDs, gDs interface{}) error {
|
|
for _, fn := range [](func(ipamapi.Callback, interface{}, interface{}) error){
|
|
builtinIpam.Init,
|
|
remoteIpam.Init,
|
|
nullIpam.Init,
|
|
} {
|
|
if err := fn(r, lDs, gDs); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|