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