Discuss this help topic in SecureBlackbox Forum

TElWebTunnelAuthentication

Declared in     


Filter: C#  VB.NET  Pascal  C++  PHP  Java  


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;
    }

[Java]
    not available

Possible values

Declared in

.NET:
  • Namespace: SBSocket
  • Assembly: BaseBlackbox
VCL:
  • Unit: SBSocket
Java:
  • Package: BaseBlackbox.jar
C++:
  • sbsocket.h

Discuss this help topic in SecureBlackbox Forum