document serverAliveInterval and serverAliveCountMax
Project: http://git-wip-us.apache.org/repos/asf/ant/repo Commit: http://git-wip-us.apache.org/repos/asf/ant/commit/356972ab Tree: http://git-wip-us.apache.org/repos/asf/ant/tree/356972ab Diff: http://git-wip-us.apache.org/repos/asf/ant/diff/356972ab Branch: refs/heads/master Commit: 356972ab3a5e0e867a2a90ece8f7e401ac145426 Parents: edeb171 Author: Stefan Bodewig <[email protected]> Authored: Tue Mar 29 14:48:39 2016 +0200 Committer: Stefan Bodewig <[email protected]> Committed: Tue Mar 29 14:48:39 2016 +0200 ---------------------------------------------------------------------- manual/Tasks/scp.html | 17 +++++++++++++++++ manual/Tasks/sshexec.html | 17 +++++++++++++++++ 2 files changed, 34 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ant/blob/356972ab/manual/Tasks/scp.html ---------------------------------------------------------------------- diff --git a/manual/Tasks/scp.html b/manual/Tasks/scp.html index 6d06bd2..909084e 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.</p> remote server. Default is 755. <em>since Ant 1.9.5</em>.</td> <td align="center" valign="top">No</td> </tr> + <tr> + <td valign="top">serverAliveIntervalSeconds</td> + <td valign="top">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. + <em>since Ant 1.9.7</em></td> + <td align="center" valign="top">No, the default is 0, indicating + that these messages will not be sent to the server</td> + </tr> + <tr> + <td valign="top">serverAliveCountMax</td> + <td valign="top">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. + <em>since Ant 1.9.7</em></td> + <td align="center" valign="top">No, defaults to 3</td> + </tr> </table> <h3>Parameters specified as nested elements</h3> http://git-wip-us.apache.org/repos/asf/ant/blob/356972ab/manual/Tasks/sshexec.html ---------------------------------------------------------------------- diff --git a/manual/Tasks/sshexec.html b/manual/Tasks/sshexec.html index 2aab2a6..d085abd 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 <em>since Ant 1.9.4</em></td> <td align="center" valign="top">No, defaults to false</td> </tr> + <tr> + <td valign="top">serverAliveIntervalSeconds</td> + <td valign="top">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. + <em>since Ant 1.9.7</em></td> + <td align="center" valign="top">No, the default is 0, indicating + that these messages will not be sent to the server</td> + </tr> + <tr> + <td valign="top">serverAliveCountMax</td> + <td valign="top">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. + <em>since Ant 1.9.7</em></td> + <td align="center" valign="top">No, defaults to 3</td> + </tr> </table> <h3>Examples</h3>
