Discuss this help topic in SecureBlackbox Forum
Specifies whether an authentication is used when connecting to the SOCKS server.
Declaration
[C#/Java]
TElSocksAuthentication = int;
const int saNoAuthentication = 1;
const int saUsercode = 2;
[VB.NET]
TElSocksAuthentication As Integer
Const saNoAuthentication As Integer = 0
Const saUsercode As Integer = 1
[Pascal]
TElSocksAuthentication = (saNoAuthentication, saUsercode);
[C++]
typedef uint8_t TElSocksAuthenticationRaw;
typedef enum { saNoAuthentication = 0, saUsercode = 1 } TElSocksAuthentication;
Description
Possible values:
Declared in
.NET:
- Namespace: SBSocket
- Assembly: BaseBlackbox
VCL:Java:
- Package: BaseBlackbox.jar
C++:
Discuss this help topic in SecureBlackbox Forum