mirror of
https://github.com/XTLS/Xray-core.git
synced 2026-01-12 21:57:15 +08:00
About `self/` & `xray/`: https://github.com/XTLS/Xray-core/pull/5496#issuecomment-3714620380 Replaces https://github.com/XTLS/Xray-core/pull/5489
12 lines
249 B
Go
12 lines
249 B
Go
//go:build !windows && !linux
|
|
|
|
package net
|
|
|
|
import (
|
|
"github.com/xtls/xray-core/common/errors"
|
|
)
|
|
|
|
func FindProcess(dest Destination) (int, string, string, error) {
|
|
return 0, "", "", errors.New("process lookup is not supported on this platform")
|
|
}
|