github.com/kelleygo/clashcore@v1.0.2/component/process/process_other.go (about) 1 //go:build !darwin && !linux && !windows && (!freebsd || !amd64) 2 3 package process 4 5 import "net/netip" 6 7 func findProcessName(network string, ip netip.Addr, srcPort int) (uint32, string, error) { 8 return 0, "", ErrPlatformNotSupport 9 } 10 11 func resolveSocketByNetlink(network string, ip netip.Addr, srcPort int) (uint32, uint32, error) { 12 return 0, 0, ErrPlatformNotSupport 13 }