sing-box/common/process/searcher_without_name.go

13 lines
298 B
Go
Raw Normal View History

2022-08-20 02:38:12 +00:00
//go:build !linux || android
package process
import (
"context"
"net/netip"
)
2022-08-20 02:38:12 +00:00
func findProcessInfo(searcher Searcher, ctx context.Context, network string, source netip.AddrPort, destination netip.AddrPort) (*Info, error) {
return searcher.FindProcessInfo(ctx, network, source, destination)
}