mirror of
https://github.com/luscis/openlan.git
synced 2025-11-02 13:24:02 +08:00
9 lines
181 B
Go
Executable File
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)
|
|
}
|