clash/component/process/process_other.go
2023-01-14 16:16:59 +08:00

13 lines
370 B
Go

//go:build !darwin && !linux && !windows && (!freebsd || !amd64)
package process
import "net/netip"
func findProcessName(network string, ip netip.Addr, srcPort int) (uint32, string, error) {
return 0, "", ErrPlatformNotSupport
}
func resolveSocketByNetlink(network string, ip netip.Addr, srcPort int) (uint32, uint32, error) {
return 0, 0, ErrPlatformNotSupport
}