Clash.Meta/component/process/process_other.go

14 lines
373 B
Go
Raw Normal View History

2021-08-18 13:26:23 +08:00
//go:build !darwin && !linux && !windows && (!freebsd || !amd64)
package process
2022-04-20 01:52:51 +08:00
import "net/netip"
func findProcessName(network string, ip netip.Addr, srcPort int) (*uint32, string, error) {
2022-11-12 20:59:29 +08:00
return nil, "", ErrPlatformNotSupport
}
func resolveSocketByNetlink(network string, ip netip.Addr, srcPort int) (uint32, uint32, error) {
return 0, 0, ErrPlatformNotSupport
}