Module: kamailio
Branch: master
Commit: 803476627da7676321251f403cc8c6ced2d09721
URL:
https://github.com/kamailio/kamailio/commit/803476627da7676321251f403cc8c6c…
Author: Henning Westerholt <hw(a)skalatan.de>
Committer: Henning Westerholt <hw(a)skalatan.de>
Date: 2019-07-30T09:22:25+02:00
siptrace: fix order of parameter for sip_trace function, add listitem structure
---
Modified: src/modules/siptrace/doc/siptrace_admin.xml
---
Diff:
https://github.com/kamailio/kamailio/commit/803476627da7676321251f403cc8c6c…
Patch:
https://github.com/kamailio/kamailio/commit/803476627da7676321251f403cc8c6c…
---
diff --git a/src/modules/siptrace/doc/siptrace_admin.xml
b/src/modules/siptrace/doc/siptrace_admin.xml
index 0ec443ce3a..a60b843831 100644
--- a/src/modules/siptrace/doc/siptrace_admin.xml
+++ b/src/modules/siptrace/doc/siptrace_admin.xml
@@ -515,7 +515,7 @@ modparam("siptrace", "auth_key",
"spoihepuirthpeuia")
<title>Functions</title>
<section id="siptrace.f.sip_trace">
<title>
- <function moreinfo="none">sip_trace([mode][,address][,
correlation_id])</function>
+ <function
moreinfo="none">sip_trace([address][,correlation_id][,mode])</function>
</title>
<para>
Store or forward the current processed SIP message/transaction/dialog in database.
@@ -525,19 +525,23 @@ modparam("siptrace", "auth_key",
"spoihepuirthpeuia")
<para>Meaning of the parameters is as follows:</para>
<itemizedlist>
<listitem>
- <para><emphasis>mode</emphasis> - SIP messages to be traced. One can
trace the current message
- (function can be called on either a reply or a request), the current transaction(the
route must
- belong to a request) or the current dialog(the message has to be an invite).
- </para>
<para><emphasis>address</emphasis> - The address in form of SIP URI
where to send a duplicate of traced message. This parameter trumps
duplicate_uri and allows tracing to more than one server.
</para>
+ </listitem>
+ <listitem>
<para><emphasis>correlation_id</emphasis> - A string with a
correlation ID
to be added to the HEP header when using HEPv3.
It's possible to use PVs.
</para>
</listitem>
+ <listitem>
+ <para><emphasis>mode</emphasis> - SIP messages to be traced. One can
trace the current message
+ (function can be called on either a reply or a request), the current transaction(the
route must
+ belong to a request) or the current dialog(the message has to be an invite).
+ </para>
+ </listitem>
</itemizedlist>
<para>
This function can be used from REQUEST_ROUTE, FAILURE_ROUTE,