Discuss this help topic in SecureBlackbox Forum

TSBSSHForwardingChannelState

Declared in     See also     


Filter: C#  VB.NET  Pascal  C++  PHP  Java  


Defines possible state of logical forwarding connection

Declaration

[C#]
    public 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;

[PHP]
    class TSBSSHForwardingChannelState extends TSBBaseEnum {
        const fcsEstablishing = 0;
        const fcsActive = 1;
        const fcsClosing = 2;
        const fcsClosed = 3;
    }

[Java]
    public enum TSBSSHForwardingChannelState { fcsEstablishing, fcsActive, fcsClosing, fcsClosed }

Possible values

Declared in

.NET:
  • Namespace: SBSSHForwarding
  • Assembly: SecureBlackbox.SBSSHClient
VCL:
  • Unit: SBSSHForwarding
Java:
  • Package: SecureBlackbox.SBSSHClient.jar
C++:
  • sbsshforwarding.h

See also:     ChannelState    

Discuss this help topic in SecureBlackbox Forum