ForwardingErrCode_ProxyBindFailed / [ForwardingLog_ProxyBindFailed]ErrCode Enumeration
[C]
enum FlowSshC_ForwardingErrCode_ProxyBindFailed
{
FlowSshC_ForwardingErrCode_ProxyBindFailed_NoServerAddress = 0,
FlowSshC_ForwardingErrCode_ProxyBindFailed_NoIp4ServerAddress = 1,
FlowSshC_ForwardingErrCode_ProxyBindFailed_AddressResolveError = 2,
FlowSshC_ForwardingErrCode_ProxyBindFailed_NoIp4AddressResolved = 3,
FlowSshC_ForwardingErrCode_ProxyBindFailed_NoIpAdressTypeMatch = 4,
FlowSshC_ForwardingErrCode_ProxyBindFailed_ProxyS2CAddFailed = 5
};
[C++/C#]
struct ForwardingLog_ProxyBindFailed
{
enum ErrCode
{
NoServerAddress = 0,
NoIp4ServerAddress = 1,
AddressResolveError = 2,
NoIp4AddressResolved = 3,
NoIpAddressTypeMatch = 4,
ProxyS2CAddFailed = 5
};
};
Members
- NoServerAddress: No SSH server public addresses present in proxy settings.
- NoIp4ServerAddress: No SSH server public IPv4 address present in proxy settings.
- AddressResolveError: Failed to resolve the DNS name in the received proxy request.
- NoIp4AddressResolved: Resolving the DNS name received in the proxy request did not result in an IPv4 address.
- NoIpAddressTypeMatch: No SSH server public IP address type matches the one received in the proxy request.
- ProxyS2CAddFailed: The SSH server rejected one or more server-to-client forwarding requests.
Remarks
Specifies an error encountered with a BIND request received during proxy forwarding. Used with ForwardingLog events of subtype ForwardingLog_ProxyBindFailed.