mirror of
https://github.com/MetaCubeX/mihomo.git
synced 2024-11-02 18:14:01 +00:00
9 lines
212 B
Go
9 lines
212 B
Go
//go:build !darwin && !linux && !windows && (!freebsd || !amd64)
|
|
|
|
package process
|
|
|
|
import "net"
|
|
|
|
func findProcessName(network string, ip net.IP, srcPort int) (string, error) {
|
|
return "", ErrPlatformNotSupport
|
|
}
|