Module: kamailio Branch: master Commit: 2a157d6f0951124ca8a3aba7171dfb91c68625b7 URL: https://github.com/kamailio/kamailio/commit/2a157d6f0951124ca8a3aba7171dfb91...
Author: Mikko Lehto mslehto@iki.fi Committer: Mikko Lehto mslehto@iki.fi Date: 2017-10-27T10:20:55+03:00
sl: document event routes
---
Modified: src/modules/sl/doc/sl.xml
---
Diff: https://github.com/kamailio/kamailio/commit/2a157d6f0951124ca8a3aba7171dfb91... Patch: https://github.com/kamailio/kamailio/commit/2a157d6f0951124ca8a3aba7171dfb91...
---
diff --git a/src/modules/sl/doc/sl.xml b/src/modules/sl/doc/sl.xml index 01696c3ac3..e1535cb411 100644 --- a/src/modules/sl/doc/sl.xml +++ b/src/modules/sl/doc/sl.xml @@ -75,5 +75,36 @@ <xi:include href="sl_params.xml"/> <xi:include href="sl_functions.xml"/> <xi:include href="sl_stats.xml"/> + + <section> + <title>Event routes</title> + <section> + <title><function moreinfo="none">sl:filtered-ack</function></title> + <para> + Executed when ACK to locally generated reply is recognized and absorbed. + </para> + <programlisting format="linespecific"> +... +event_route[sl:filtered-ack] { + xlog("sl:filtered-ack ACK to local reply absorbed\n"); +} +... + </programlisting> + </section> + <section> + <title><function moreinfo="none">sl:local-response</function></title> + <para> + Executed after sl module reply function has sent local reply. + </para> + <programlisting format="linespecific"> +... +event_route[sl:local-response] { + xlog("sl:local-response replied locally\n"); +} +... + </programlisting> + </section> + </section> + </chapter> </book>