ForwardingType / [ForwardingLog_X2Y]Type Enumeration
[C]
enum FlowSshC_ForwardingType
{
FlowSshC_ForwardingType_ProxySocks4 = 1,
FlowSshC_ForwardingType_ProxySocks5 = 2,
FlowSshC_ForwardingType_ProxyHttpConnect = 3,
FlowSshC_ForwardingType_ClientSide = 9,
FlowSshC_ForwardingType_ServerSide = 10
};
[C++/C#]
struct ForwardingLog_X2Y
{
enum Type
{
ProxySocks4 = 1,
ProxySocks5 = 2,
ProxyHttpConnect = 3,
ClientSide = 9,
ServerSide = 10
};
};
Members
- ProxySocks4: Dynamic proxy forwarded connection initiated using SOCKS v4.
- ProxySocks5: Dynamic proxy forwarded connection initiated using SOCKS v5.
- ProxyHttpConnect: Dynamic proxy forwarded connection initiated using the HTTP CONNECT verb.
- ClientSide: A client-to-server forwarded connection initiated using a client-to-server port forwarding rule.
- ServerSide: A server-to-client forwarded connection initiated using a server-to-client port forwarding rule.
Remarks
Specifies a type of port forwarded connection. Used with ForwardingLog events of subtypes ForwardingLog_C2S and ForwardingLog_S2C.