Set bridge mac addr on supported kernels

Fixes #3200
Docker-DCO-1.1-Signed-off-by: Michael Crosby <michael@crosbymichael.com> (github: crosbymichael)
This commit is contained in:
Michael Crosby 2014-03-31 21:02:42 +00:00
parent a031814bc4
commit ba89d04fbc
2 changed files with 55 additions and 0 deletions

View file

@ -59,3 +59,7 @@ func NetworkSetMaster(iface, master *net.Interface) error {
func NetworkLinkDown(iface *net.Interface) error {
return ErrNotImplemented
}
func CreateBridge(name string, setMacAddr bool) error {
return ErrNotImplemented
}