Clash.Meta/component/process/process_other.go

14 lines
292 B
Go
Raw Normal View History

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