mirror of
https://github.com/luscis/openlan.git
synced 2025-10-06 09:06:54 +08:00
10 lines
145 B
Go
Executable File
10 lines
145 B
Go
Executable File
// +build !linux
|
|
|
|
package libol
|
|
|
|
import "net"
|
|
|
|
func GetLocalByGw(addr string) (net.IP, error) {
|
|
return nil, NewErr("GetLocalByGw notSupport")
|
|
}
|