clash/component/process/process_other.go
2022-04-20 22:52:05 +08:00

9 lines
222 B
Go

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