Class ProcessResolutionContext
- Namespace
- Fluxzy.Utils.ProcessTracking
- Assembly
- Fluxzy.Core.dll
Describes a downstream client connection passed to an IProcessInfoResolver so the originating process can be resolved.
public sealed class ProcessResolutionContext
- Inheritance
-
ProcessResolutionContext
- Inherited Members
Constructors
ProcessResolutionContext(IPEndPoint, IPEndPoint, Authority)
public ProcessResolutionContext(IPEndPoint remoteEndPoint, IPEndPoint localEndPoint, Authority requestedAuthority)
Parameters
remoteEndPointIPEndPointlocalEndPointIPEndPointrequestedAuthorityAuthority
Properties
LocalEndPoint
The proxy endpoint that accepted the connection.
public IPEndPoint LocalEndPoint { get; }
Property Value
RemoteEndPoint
The downstream client endpoint seen by the proxy. When a transparent tunnel such as tun2socks fronts the proxy, this is the tunnel socket, not the real client.
public IPEndPoint RemoteEndPoint { get; }
Property Value
RequestedAuthority
The destination requested by the client, that is the CONNECT or SOCKS5 target.
public Authority RequestedAuthority { get; }