Files
Xray-core/common/net/find_process_others.go
T

12 lines
314 B
Go
Raw Normal View History

//go:build !windows && !linux && !android
2026-01-05 09:12:13 +08:00
package net
import (
"github.com/xtls/xray-core/common/errors"
)
func FindProcess(network, srcIP string, srcPort uint16, destIP string, destPort uint16) (int, string, string, error) {
return 0, "", "", errors.New("process lookup is not supported on this platform")
2026-01-05 09:12:13 +08:00
}