Discuss this help topic in SecureBlackbox Forum

TSSHVersion

Declared in     See also     


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


Defines possible SSH versions.

Declaration

[C#/Java]
    TSSHVersion = short;
        const short sbSSH1 = 1;
        const short sbSSH2 = 2;

[VB.NET]
    TSSHVersion As SmallInt
        Const sbSSH1 As SmallInt = 1
        Const sbSSH2 As SmallInt = 2

[Pascal]
    TSSHVersion = (sbSSH1, sbSSH2);

[C++]
    typedef uint8_t TSSHVersionRaw;
    typedef enum { sbSSH1 = 0, sbSSH2 = 1 } TSSHVersion;
    
    typedef uint32_t TSSHVersionsRaw;
    typedef enum { f_sbSSH1 = 1, f_sbSSH2 = 2 } TSSHVersions;

Description

Possible values:


Declared in

.NET:
  • Namespace: SBSSHCommon
  • Assembly: SecureBlackbox.SBSSHCommon
VCL:
  • Unit: SBSSHCommon
Java:
  • Package: SecureBlackbox.SBSSHCommon.jar
C++:
  • sbsshcommon.h

See also:     Versions    

Discuss this help topic in SecureBlackbox Forum