Discuss this help topic in SecureBlackbox Forum

TElSocksAuthentication

Declared in     


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


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

[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