mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
9e8974cc64
Currently store makes use of a static isReservedNetwork check to decide if a network needs to be stored in the distributed store or not. But it is better if the check is not static, but be determined based on the capability of the driver that backs the network. Hence introducing a new capability mechanism to the driver which it can express its capability during registration. Making use of first such capability : Scope. This can be expanded in the future for more such cases. Signed-off-by: Madhu Venugopal <madhu@docker.com>
17 lines
327 B
Go
17 lines
327 B
Go
package libnetwork
|
|
|
|
import (
|
|
"github.com/docker/libnetwork/driverapi"
|
|
"github.com/docker/libnetwork/drivers/windows"
|
|
)
|
|
|
|
func initDrivers(dc driverapi.DriverCallback) error {
|
|
for _, fn := range [](func(driverapi.DriverCallback) error){
|
|
windows.Init,
|
|
} {
|
|
if err := fn(dc); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
return nil
|
|
}
|