Files
openlan/pkg/network/bridger_others.go
2022-07-29 23:38:54 +08:00

9 lines
181 B
Go
Executable File

// +build !linux
package network
func NewBridger(provider, name string, ifMtu int) Bridger {
// others platform not support linux bridge.
return NewVirtualBridge(name, ifMtu)
}