Discuss this help topic in SecureBlackbox Forum
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;
}
Possible values
Declared in
.NET:
- Namespace: SBSocket
- Assembly: BaseBlackbox
VCL:Java:
- Package: BaseBlackbox.jar
C++:
Discuss this help topic in SecureBlackbox Forum