Discuss this help topic in SecureBlackbox Forum

TElSimpleFTPSClient.TransferKeepAliveInterval

TElSimpleFTPSClient     See also     


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


Specifies the keep-alive interval during the data transfer.

Declaration

[C#]
    int TransferKeepAliveInterval;

[VB.NET]
    Property TransferKeepAliveInterval As Integer

[Pascal]
    property TransferKeepAliveInterval : integer;

[C++]
    int32_t get_TransferKeepAliveInterval();
    void set_TransferKeepAliveInterval(int32_t Value);

[PHP]
    integer get_TransferKeepAliveInterval()
    void set_TransferKeepAliveInterval(integer $Value)

[Java]
    int getTransferKeepAliveInterval();
    void setTransferKeepAliveInterval(int Value);

Description

    When the large amounts of data are transferred over the data channel and the command channel stays idle, command socket can be closed either by the server itself (rarely) or by some intermediate firewall or router. To prevent the disconnects, set TransferKeepAliveInterval property. The default value is 0 (no keep-alives).

Discuss this help topic in SecureBlackbox Forum