Explorar el Código

modules/tsilo: documentation update

Federico Cabiddu hace 10 años
padre
commit
97345fc366
Se han modificado 2 ficheros con 9 adiciones y 4 borrados
  1. 1 1
      modules/tsilo/doc/tsilo.xml
  2. 8 3
      modules/tsilo/doc/tsilo_admin.xml

+ 1 - 1
modules/tsilo/doc/tsilo.xml

@@ -25,7 +25,7 @@
 	    </editor>
 	</authorgroup>
 	<copyright>
-	    <year>2014</year>
+	    <year>2015</year>
 	    <holder>Federico Cabiddu</holder>
 	</copyright>
     </bookinfo>

+ 8 - 3
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,
@@ -48,6 +48,11 @@
 			</para>
 			</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>
@@ -151,7 +156,7 @@ if (is_method("INVITE")) {
 		<programlisting format="linespecific">
 ...
 if (is_method("REGISTER")) {
-	ts_append("location", "$tu");
+	ts_append("location", "$tU");
 }
 ...
 </programlisting>