mirror of
https://gitclone.com/github.com/MetaCubeX/Clash.Meta
synced 2024-11-15 21:51:23 +08:00
11 lines
207 B
Go
11 lines
207 B
Go
|
// +build !darwin,!linux,!windows
|
||
|
// +build !freebsd !amd64
|
||
|
|
||
|
package process
|
||
|
|
||
|
import "net"
|
||
|
|
||
|
func findProcessName(network string, ip net.IP, srcPort int) (string, error) {
|
||
|
return "", ErrPlatformNotSupport
|
||
|
}
|