searcher_without_name.go 298 B

123456789101112
  1. //go:build !linux || android
  2. package process
  3. import (
  4. "context"
  5. "net/netip"
  6. )
  7. func findProcessInfo(searcher Searcher, ctx context.Context, network string, source netip.AddrPort, destination netip.AddrPort) (*Info, error) {
  8. return searcher.FindProcessInfo(ctx, network, source, destination)
  9. }