sing-box/common/process/searcher_without_name.go
2022-08-20 12:11:27 +08:00

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)
}