Skip to content

Commit

Permalink
sipcapture: docs for sip_capture_forward(uri)
Browse files Browse the repository at this point in the history
  • Loading branch information
miconda committed May 2, 2018
1 parent 9853d9b commit d867d8a
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions src/modules/sipcapture/doc/sipcapture_admin.xml
Expand Up @@ -648,6 +648,36 @@ report_capture("report_data", "$ci", "{\"MOS\":4.1,\"PACKET_LOST\":100"});
...
$var(res) = float2int("10.5", "1");
...
</programlisting>
</example>
</section>
<section id="sipcapture.f.sip_capture_forward">
<title>
<function moreinfo="none">sip_capture_forward(uri)</function>
</title>
<para>
Forward the HEP packet to an address specified by the parameter uri
(it has to be a sip uri format). The function should be used inside
event_route[sipcapture:request]. After using this function, add a
return 0 in order to stop processing further the packet in the local
&kamailio; instance.
</para>
<para>
This function can be used from ANY_ROUTE.
</para>
<example>
<title><function>sip_capture_forward()</function> usage</title>
<programlisting format="linespecific">
...
event_route[sipcapture:request] {
...
if(src_ip==1.2.3.4) {
sip_capture_forward("sip:2.3.4.5:5090");
return 0;
}
...
}
...
</programlisting>
</example>
</section>
Expand Down

0 comments on commit d867d8a

Please sign in to comment.