Discuss this help topic in SecureBlackbox Forum

TElSimpleFTPSClient.SSLMode

TElSimpleFTPSClient     See also     


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


Specifies if explicit or implicit SSL mode should be used

Declaration

[C#]
    TSBSSLMode SSLMode;

[VB.NET]
    Property SSLMode As TSBSSLMode

[Pascal]
    property SSLMode : TSBSSLMode;

[C++]
    TSBSSLMode get_SSLMode();
    void set_SSLMode(TSBSSLMode Value);

[PHP]
    integer get_SSLMode()
    void set_SSLMode(integer $Value)

[Java]
    TSBSSLMode getSSLMode();
    void setSSLMode(TSBSSLMode Value);

Values:

Description

    Use this property to specify if explicit or implicit SSL mode should be used to establish secure connection to server. In explicit mode, the client connects to the generic FTP port (21), and then sends AUTH command (please see the AuthCmd property). In implicit mode, the connection is performed to the dedicated port (usually 990), and immediately starts SSL negotiation (without sending AUTH command).
    Default value is 1 (explicit mode).

See also:     EstablishSSLSession     CipherSuite     CipherSuites    

Discuss this help topic in SecureBlackbox Forum