Discuss this help topic in SecureBlackbox Forum

TElFTPSServer.PassiveMode

TElFTPSServer     See also     


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


Specifies if passive or active data transfer mode should be used.

Declaration

[C#]
    bool PassiveMode;

[VB.NET]
    Property PassiveMode As Boolean

[Pascal]
    property PassiveMode : boolean;

[C++]
    bool get_PassiveMode();

[PHP]
    bool get_PassiveMode()

[Java]
    boolean getPassiveMode();

Description

    If the property is set to True, the passive mode will be used. In passive mode, if the data connection is needed, the server opens listening socket and accepts data connection to it. If active mode is used, the listening socket is opened by the client side. Using passive mode is reasonable if a client is located behind a firewall or proxy software.
    Default value is False.

See also:     OnPassiveModeRequest    

Discuss this help topic in SecureBlackbox Forum