clash/component/process/process_other.go

10 lines
212 B
Go
Raw Normal View History

2021-08-18 05:26:23 +00:00
//go:build !darwin && !linux && !windows && (!freebsd || !amd64)
package process
import "net"
func findProcessName(network string, ip net.IP, srcPort int) (string, error) {
return "", ErrPlatformNotSupport
}