Module: kamailio Branch: master Commit: 97345fc366b51c4c24128be39cc6b689fc254a10 URL: https://github.com/kamailio/kamailio/commit/97345fc366b51c4c24128be39cc6b689...
Author: Federico Cabiddu fcabiddu@orange-vallee.net Committer: Federico Cabiddu fcabiddu@orange-vallee.net Date: 2015-04-21T16:44:19+02:00
modules/tsilo: documentation update
---
Modified: modules/tsilo/doc/tsilo.xml Modified: modules/tsilo/doc/tsilo_admin.xml
---
Diff: https://github.com/kamailio/kamailio/commit/97345fc366b51c4c24128be39cc6b689... Patch: https://github.com/kamailio/kamailio/commit/97345fc366b51c4c24128be39cc6b689...
---
diff --git a/modules/tsilo/doc/tsilo.xml b/modules/tsilo/doc/tsilo.xml index 4feb719..4a5a00e 100644 --- a/modules/tsilo/doc/tsilo.xml +++ b/modules/tsilo/doc/tsilo.xml @@ -25,7 +25,7 @@ </editor> </authorgroup> <copyright> - <year>2014</year> + <year>2015</year> <holder>Federico Cabiddu</holder> </copyright> </bookinfo> diff --git a/modules/tsilo/doc/tsilo_admin.xml b/modules/tsilo/doc/tsilo_admin.xml index 9c08931..7625059 100644 --- a/modules/tsilo/doc/tsilo_admin.xml +++ b/modules/tsilo/doc/tsilo_admin.xml @@ -16,12 +16,12 @@ <section> <title>Overview</title> <para> - This modules provides transaction storage for the &kamailioname;. It + This module provides transaction storage for the &kamailioname;. It stores in an internal table transactions for a Request-URI (R-URI) and add branches to them later if new contacts for the AOR are added. </para> <para> - When the <emphasis>ts_store</emphasis> function is called, the modules stores the current transaction R-URI &uri;, index and label. Two functions (<emphasis>ts_append</emphasis> and <emphasis>ts_append_to</emphasis>) provide the ability to add new branches either to a specific transaction or to all of the transactions stored for a given R-URI. + When the <emphasis>ts_store</emphasis> function is called, the module stores the current transaction R-URI &uri;, index and label. Two functions (<emphasis>ts_append</emphasis> and <emphasis>ts_append_to</emphasis>) provide the ability to add new branches either to a specific transaction or to all of the transactions stored for a given R-URI. If USRLOC's <emphasis>use_domain</emphasis> option is true, the domain part of the R-URI is used to store the transaction, otherwise only the username part is used. </para> <para> When a transaction is destroyed by the <emphasis>TM</emphasis> module, @@ -49,6 +49,11 @@ </listitem> <listitem> <para> + <emphasis>USRLOC</emphasis>--usrloc module-- according to the value of <emphasis>use_domain</emphasis> option, domain part of the r-uri will be used to store the transaction. + </para> + </listitem> + <listitem> + <para> <emphasis>SL</emphasis> </para> </listitem> @@ -151,7 +156,7 @@ if (is_method("INVITE")) { <programlisting format="linespecific"> ... if (is_method("REGISTER")) { - ts_append("location", "$tu"); + ts_append("location", "$tU"); } ... </programlisting>