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