clash/component/process/process_other.go

14 lines
373 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"
func findProcessName(network string, ip netip.Addr, srcPort int) (*uint32, string, error) {
2022-11-12 12:59:29 +00:00
return nil, "", ErrPlatformNotSupport
}
func resolveSocketByNetlink(network string, ip netip.Addr, srcPort int) (uint32, uint32, error) {
return 0, 0, ErrPlatformNotSupport
}