find_process_others.go 249 B

1234567891011
  1. //go:build !windows && !linux
  2. package net
  3. import (
  4. "github.com/xtls/xray-core/common/errors"
  5. )
  6. func FindProcess(dest Destination) (int, string, string, error) {
  7. return 0, "", "", errors.New("process lookup is not supported on this platform")
  8. }