diff --git a/manual/Tasks/scp.html b/manual/Tasks/scp.html index 6d06bd213..909084ef6 100644 --- a/manual/Tasks/scp.html +++ b/manual/Tasks/scp.html @@ -200,6 +200,23 @@ for more information. This task has been tested with jsch-0.1.2 and later.

remote server. Default is 755. since Ant 1.9.5. No + + serverAliveIntervalSeconds + Sets a timeout interval in seconds after which if no data has + been received from the server, the task will send a message through + the encrypted channel to request a response from the server. + since Ant 1.9.7 + No, the default is 0, indicating + that these messages will not be sent to the server + + + serverAliveCountMax + The number of server alive messages which may be + sent without receiving any messages back from the server. Only + used if serverAliveIntervalSeconds is not 0. + since Ant 1.9.7 + No, defaults to 3 +

Parameters specified as nested elements

diff --git a/manual/Tasks/sshexec.html b/manual/Tasks/sshexec.html index 2aab2a6bc..d085abdd1 100644 --- a/manual/Tasks/sshexec.html +++ b/manual/Tasks/sshexec.html @@ -230,6 +230,23 @@ and won't work with versions of jsch earlier than since Ant 1.9.4 No, defaults to false + + serverAliveIntervalSeconds + Sets a timeout interval in seconds after which if no data has + been received from the server, the task will send a message through + the encrypted channel to request a response from the server. + since Ant 1.9.7 + No, the default is 0, indicating + that these messages will not be sent to the server + + + serverAliveCountMax + The number of server alive messages which may be + sent without receiving any messages back from the server. Only + used if serverAliveIntervalSeconds is not 0. + since Ant 1.9.7 + No, defaults to 3 +

Examples