Files
xray-core/common/net/find_process_others.go
2026-01-05 01:12:13 +00:00

12 lines
237 B
Go

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