TIMEOUT (JANUS DEFINE parameter): Difference between revisions

From m204wiki
Jump to navigation Jump to search
mNo edit summary
Line 2: Line 2:
<span class="pageSubtitle"><section begin="desc" />TIMEOUT xxxx -- Inactivity seconds when client will be disconnected.<section end="desc" /></span>
<span class="pageSubtitle"><section begin="desc" />TIMEOUT xxxx -- Inactivity seconds when client will be disconnected.<section end="desc" /></span>


TIMEOUT is a parameter on [[JANUS DEFINE]], which defines and sets characteristics of a Janus port. See the [[JANUS DEFINE#parmlist|List of JANUS DEFINE parameters]].
<var>TIMEOUT</var> is a parameter on <var>[[JANUS DEFINE]]</var>, which defines and sets characteristics of a Janus port. See the [[JANUS DEFINE#parmlist|List of JANUS DEFINE parameters]].


This parameter specifies the number of seconds of inactivity after which clients connected to this port will be disconnected. The default for TIMEOUT is 0, which means that connections never time out.
This parameter specifies the number of seconds of inactivity after which clients connected to this port will be disconnected. The default for <var>TIMEOUT</var> is 0, which means that connections never time out.


<table class="list">
<table class="list">
<tr><th>WEBSERV ports</th>
<tr><th>WEBSERV ports</th>
<td>Browser requests never involve waits on user input so the TIMEOUT parameter for WEBSERV ports involves terminating connections when network response is '''extremely''' slow or cases where the client workstation has been turned off before a response is received from ''[[Janus Web Server]]''. Because of this, TIMEOUT can be set fairly aggressively for WEBSERV ports. A value of 60 (seconds) would be reasonable.</td></tr>
<td>Browser requests never involve waits on user input so the <var>TIMEOUT</var> parameter for WEBSERV ports involves terminating connections when network response is '''extremely''' slow or cases where the client workstation has been turned off before a response is received from ''[[Janus Web Server]]''. Because of this, <var>TIMEOUT</var> can be set fairly aggressively for WEBSERV ports. A value of 60 (seconds) would be reasonable.</td></tr>
<tr><th nowrap>All other port types</th>
<tr><th nowrap>All other port types</th>
<td>The TIMEOUT value should reflect the fact that a connection might require user input waits.
<td>The <var>TIMEOUT</var> value should reflect the fact that a connection might require user input waits.
</td></tr>
</td></tr>
</table>
</table>


TIMEOUT is valid for all port types.
<var>TIMEOUT</var> is valid for all port types.


==References==
==See also==
 
<ul>
See: [[List of Janus commands]] | [[JANUS DEFINE#parmlist|List of JANUS DEFINE parameters]].
<li>[[List of Janus commands]]
<li>[[JANUS DEFINE#parmlist|List of JANUS DEFINE parameters]]
</ul>


[[Category:JANUS DEFINE parameters|TIMEOUT]]
[[Category:JANUS DEFINE parameters|TIMEOUT]]

Revision as of 18:20, 28 February 2012

<section begin="desc" />TIMEOUT xxxx -- Inactivity seconds when client will be disconnected.<section end="desc" />

TIMEOUT is a parameter on JANUS DEFINE, which defines and sets characteristics of a Janus port. See the List of JANUS DEFINE parameters.

This parameter specifies the number of seconds of inactivity after which clients connected to this port will be disconnected. The default for TIMEOUT is 0, which means that connections never time out.

WEBSERV ports Browser requests never involve waits on user input so the TIMEOUT parameter for WEBSERV ports involves terminating connections when network response is extremely slow or cases where the client workstation has been turned off before a response is received from Janus Web Server. Because of this, TIMEOUT can be set fairly aggressively for WEBSERV ports. A value of 60 (seconds) would be reasonable.
All other port types The TIMEOUT value should reflect the fact that a connection might require user input waits.

TIMEOUT is valid for all port types.

See also