mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
00b2c13a1b
Fix build constraints for linux-only network drivers Signed-off-by: Brian Goff <cpuguy83@gmail.com>
28 lines
569 B
Go
28 lines
569 B
Go
// +build linux
|
|
|
|
package bridge
|
|
|
|
type setupStep func(*networkConfiguration, *bridgeInterface) error
|
|
|
|
type bridgeSetup struct {
|
|
config *networkConfiguration
|
|
bridge *bridgeInterface
|
|
steps []setupStep
|
|
}
|
|
|
|
func newBridgeSetup(c *networkConfiguration, i *bridgeInterface) *bridgeSetup {
|
|
return &bridgeSetup{config: c, bridge: i}
|
|
}
|
|
|
|
func (b *bridgeSetup) apply() error {
|
|
for _, fn := range b.steps {
|
|
if err := fn(b.config, b.bridge); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (b *bridgeSetup) queueStep(step setupStep) {
|
|
b.steps = append(b.steps, step)
|
|
}
|