|
@@ -201,16 +201,15 @@ modparam("tls", "cipher_list", "HIGH")
|
|
|
<section id="send_timeout">
|
|
|
<title><varname>send_timeout</varname> (int)</title>
|
|
|
<para>
|
|
|
- Sets the maximum interval of time after which SIP-router will give up trying to send a message over TLS (time after a TLS send will be aborted and the corresponding TLS connection closed). The value is in seconds.
|
|
|
- </para>
|
|
|
- <para>
|
|
|
- The default value is 120 s.
|
|
|
+ This parameter is obsolete and cannot be used in newer TLS versions
|
|
|
+ (> sip-router 3.0). In these versions the send_timeout is
|
|
|
+ replaced by tcp_send_timeout (common with all the tcp connections).
|
|
|
</para>
|
|
|
<example>
|
|
|
<title>Set <varname>send_timeout</varname> parameter</title>
|
|
|
<programlisting>
|
|
|
...
|
|
|
-modparam("tls", "send_timeout", 1)
|
|
|
+tls_send_timeout = 10
|
|
|
...
|
|
|
</programlisting>
|
|
|
</example>
|
|
@@ -219,16 +218,15 @@ modparam("tls", "send_timeout", 1)
|
|
|
<section id="handshake_timeout">
|
|
|
<title><varname>handshake_timeout</varname> (int)</title>
|
|
|
<para>
|
|
|
- Sets the maximum interval of time after which SIP-router will give up trying to accept a TLS connection or connect to a TLS peer. The value is in seconds.
|
|
|
- </para>
|
|
|
- <para>
|
|
|
- The default value is 120 s.
|
|
|
+ This parameter is obsolete and cannot be used in newer TLS versions
|
|
|
+ (> sip-router 3.0). In these versions the handshake_timeout is
|
|
|
+ replaced by tcp_connect_timeout (common with all the tcp connections).
|
|
|
</para>
|
|
|
<example>
|
|
|
<title>Set <varname>handshake_timeout</varname> parameter</title>
|
|
|
<programlisting>
|
|
|
...
|
|
|
-modparam("tls", "handshake_timeout", 1)
|
|
|
+tcp_connect_timeout = 60
|
|
|
...
|
|
|
</programlisting>
|
|
|
</example>
|
|
@@ -237,7 +235,10 @@ modparam("tls", "handshake_timeout", 1)
|
|
|
<section id="connection_timeout">
|
|
|
<title><varname>connection_timeout</varname> (int)</title>
|
|
|
<para>
|
|
|
- Sets the amount of time after which an idle TLS connection will be closed. This is similar to tcp_connection_lifetime. The value is expressed in seconds.
|
|
|
+ Sets the amount of time after which an idle TLS connection will be
|
|
|
+ closed, if no I/O ever occured after the initial open. If an I/O event
|
|
|
+ occurs, the timeout will be extended with tcp_connection_lifetime.
|
|
|
+ The value is expressed in seconds.
|
|
|
</para>
|
|
|
<para>
|
|
|
The default value is 10 min.
|