Discuss this help topic in SecureBlackbox Forum

TElSimpleFTPSServer.ImplicitSSL

TElSimpleFTPSServer     


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


Specifies if implicit SSL mode is used.

Declaration

[C#]
    bool ImplicitSSL;

[VB.NET]
    Property ImplicitSSL As Boolean

[Pascal]
    property ImplicitSSL : boolean;

[C++]
    bool get_ImplicitSSL();
    void set_ImplicitSSL(bool Value);

[PHP]
    bool get_ImplicitSSL()
    void set_ImplicitSSL(bool $Value)

[Java]
    boolean getImplicitSSL();
    void setImplicitSSL(boolean Value);

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. In implicit mode, the connection is established to the dedicated port (usually 990), and immediately starts SSL negotiation (without sending AUTH command).
    Default value is False (explicit SSL mode).

Discuss this help topic in SecureBlackbox Forum