Routing config: Add processName (#5489)

This commit is contained in:
风扇滑翔翼
2026-01-05 09:12:13 +08:00
committed by GitHub
parent e7c72c011f
commit 7265b5ac3f
9 changed files with 614 additions and 77 deletions
+11
View File
@@ -0,0 +1,11 @@
//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")
}