sing-box/common/process/searcher.go

33 lines
775 B
Go
Raw Normal View History

package process
import (
"context"
"net/netip"
"github.com/sagernet/sing-box/log"
"github.com/sagernet/sing-tun"
E "github.com/sagernet/sing/common/exceptions"
)
type Searcher interface {
2022-08-20 02:38:12 +00:00
FindProcessInfo(ctx context.Context, network string, source netip.AddrPort, destination netip.AddrPort) (*Info, error)
}
var ErrNotFound = E.New("process not found")
type Config struct {
Logger log.ContextLogger
PackageManager tun.PackageManager
}
type Info struct {
ProcessPath string
PackageName string
User string
UserId int32
}
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) {
2022-09-25 14:16:24 +00:00
return findProcessInfo(searcher, ctx, network, source, destination)
2022-08-20 02:38:12 +00:00
}