Discuss this help topic in SecureBlackbox Forum

TElSocksVersion

Declared in     


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


Specifies the version of SOCKS protocol to be used with the SOCKS server.

Declaration

[C#/Java]
    TElSocksVersion = int;
        const int elSocks4 = 0;
        const int elSocks5 = 1;

[VB.NET]
    TElSocksVersion As Integer
        Const elSocks4 As Integer = 0
        Const elSocks5 As Integer = 1

[Pascal]
    TElSocksVersion = (elSocks4, elSocks5);

[C++]
    typedef uint8_t TElSocksVersionRaw;
    typedef enum { elSocks4 = 0, elSocks5 = 1 } TElSocksVersion;

Description

Possible values:


Declared in

.NET:
  • Namespace: SBSocket
  • Assembly: BaseBlackbox
VCL:
  • Unit: SBSocket
Java:
  • Package: BaseBlackbox.jar
C++:
  • sbsocket.h

Discuss this help topic in SecureBlackbox Forum