Discuss this help topic in SecureBlackbox Forum
Defines possible state of logical forwarding connection
Declaration
[C#/Java]
enum TSBSSHForwardingChannelState { fcsEstablishing = 0, fcsActive = 1, fcsClosing = 2, fcsClosed = 3 };
[VB.NET]
Enum TSBSSHForwardingChannelState
fcsEstablishing = 0
fcsActive = 1
fcsClosing = 2
fcsClosed = 3
End Enum
[Pascal]
TSBSSHForwardingChannelState = (fcsEstablishing, fcsActive, fcsClosing, fcsClosed);
[C++]
typedef uint8_t TSBSSHForwardingChannelStateRaw;
typedef enum { fcsEstablishing = 0, fcsActive = 1, fcsClosing = 2, fcsClosed = 3 } TSBSSHForwardingChannelState;
Description
Possible values:
Declared in
.NET:
- Namespace: SBSSHForwarding
- Assembly: SecureBlackbox.SBSSHClient
VCL:Java:
- Package: SecureBlackbox.SBSSHClient.jar
C++:
Discuss this help topic in SecureBlackbox Forum