ForwardingErr Structure/Class
[C]
struct FlowSshC_ForwardingErr
{
unsigned int m_errCode;
wchar_t const* m_auxInfo;
wchar_t const* m_desc;
};
[C++]
struct ForwardingErr
{
unsigned int m_errCode;
std::wstring m_auxInfo;
std::wstring m_desc;
};
[C#]
public sealed class ForwardingErr
{
public ForwardingErrCode ErrCode;
public string AuxInfo;
public string Desc;
}
Members
- ErrCode: ForwardingErrCode enumeration.
- AuxInfo: Optional auxiliary info. In [C] it may be NULL, and in [C++/.NET] an empty string.
- Desc: Optional human-readable error description. In [C] it may be NULL, and in [C++/.NET] an empty string.
Remarks
Contains information about an error that occurred during a port forwarding request. The structure/class is used with the corresponding forwarding handler.