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
2023-01-14 16:16:59 +08:00

14 lines
370 B
Go

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