Discuss this help topic in SecureBlackbox Forum

TElSocksVersion

Declared in     


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


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

Declaration

[C#]
    TElSocksVersion = short;
        const short elSocks4 = 0;
        const short elSocks5 = 1;

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

[Pascal]
    TElSocksVersion = (elSocks4, elSocks5);

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

[PHP]
    class TElSocksVersion extends TSBBaseEnum {
        const elSocks4 = 0;
        const elSocks5 = 1;
    }

[Java]
    not available

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