mirror of
https://github.com/shtorm-7/sing-box-extended.git
synced 2026-09-15 21:00:27 +00:00
17 lines
288 B
Go
17 lines
288 B
Go
//go:build !darwin && !linux && !windows
|
|
|
|
package route
|
|
|
|
import (
|
|
"net"
|
|
"net/netip"
|
|
)
|
|
|
|
func systemGateways(interfaceIndex int) []netip.Addr {
|
|
return nil
|
|
}
|
|
|
|
func systemNeighborHardwareAddresses(interfaceIndex int, addresses []netip.Addr) map[netip.Addr]net.HardwareAddr {
|
|
return nil
|
|
}
|