clash/component/process/process_other.go

14 lines
370 B
Go
Raw Normal View History

2021-08-18 05:26:23 +00:00
//go:build !darwin && !linux && !windows && (!freebsd || !amd64)
package process
2022-04-19 17:52:51 +00:00
import "net/netip"
2023-01-13 18:23:30 +00:00
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
}