Browse Source

document serverAliveInterval and serverAliveCountMax

master
Stefan Bodewig 9 years ago
parent
commit
356972ab3a
2 changed files with 34 additions and 0 deletions
  1. +17
    -0
      manual/Tasks/scp.html
  2. +17
    -0
      manual/Tasks/sshexec.html

+ 17
- 0
manual/Tasks/scp.html View File

@@ -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>



+ 17
- 0
manual/Tasks/sshexec.html View File

@@ -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>


Loading…
Cancel
Save