Files
sing-box-extended-mirror/route/network_environment_stub.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
}