mirror of
https://github.com/XTLS/Xray-core.git
synced 2026-09-17 15:00:27 +00:00
Fixes https://github.com/XTLS/Xray-core/pull/6434#issuecomment-5016175948
12 lines
287 B
Go
12 lines
287 B
Go
//go:build ios
|
|
|
|
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")
|
|
}
|