1
0
mirror of https://github.com/MetaCubeX/mihomo.git synced 2025-09-19 20:15:59 +08:00
Files
mihomo/component/process/process_other.go
2022-04-20 01:52:51 +08:00

10 lines
222 B
Go

//go:build !darwin && !linux && !windows && (!freebsd || !amd64)
package process
import "net/netip"
func findProcessName(network string, ip netip.Addr, srcPort int) (string, error) {
return "", ErrPlatformNotSupport
}