mirror of
https://github.com/luscis/openlan.git
synced 2025-12-24 11:10:54 +08:00
15 lines
248 B
Go
Executable File
15 lines
248 B
Go
Executable File
//go:build !linux
|
|
// +build !linux
|
|
|
|
package libol
|
|
|
|
import "net"
|
|
|
|
func GetLocalByGw(addr string) (net.IP, error) {
|
|
return nil, NewErr("GetLocalByGw notSupport")
|
|
}
|
|
|
|
func ListRoutes() ([]Prefix, error) {
|
|
return nil, NewErr("ListRoute notSupport")
|
|
}
|