mirror of
https://github.com/SagerNet/sing-box.git
synced 2024-11-10 02:53:12 +00:00
13 lines
298 B
Go
13 lines
298 B
Go
//go:build !linux || android
|
|
|
|
package process
|
|
|
|
import (
|
|
"context"
|
|
"net/netip"
|
|
)
|
|
|
|
func findProcessInfo(searcher Searcher, ctx context.Context, network string, source netip.AddrPort, destination netip.AddrPort) (*Info, error) {
|
|
return searcher.FindProcessInfo(ctx, network, source, destination)
|
|
}
|