mirror of
https://github.com/XTLS/Xray-core.git
synced 2026-05-08 14:13:22 +00:00
Example: https://github.com/XTLS/Xray-core/pull/5915#issuecomment-4232122895 --------- Co-authored-by: 风扇滑翔翼 <Fangliding.fshxy@outlook.com>
12 lines
314 B
Go
12 lines
314 B
Go
//go:build !windows && !linux && !android
|
|
|
|
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")
|
|
}
|