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