mirror of
https://gitclone.com/github.com/MetaCubeX/Clash.Meta
synced 2024-11-15 13:41:23 +08:00
14 lines
357 B
Go
14 lines
357 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
|
|
}
|
|
|
|
func resolveSocketByNetlink(network string, ip netip.Addr, srcPort int) (int32, int32, error) {
|
|
return 0, 0, ErrPlatformNotSupport
|
|
}
|