mirror of
https://gitclone.com/github.com/MetaCubeX/Clash.Meta
synced 2024-11-15 13:41:23 +08:00
14 lines
292 B
Go
14 lines
292 B
Go
//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
|
|
}
|