mihomo/component/process/process_other.go
2020-12-17 22:17:27 +08:00

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
}