Module: kamailio Branch: master Commit: f1953708c37f0abd020cffff44991b47c4cacfdd URL: https://github.com/kamailio/kamailio/commit/f1953708c37f0abd020cffff44991b47...
Author: Daniel-Constantin Mierla miconda@gmail.com Committer: Daniel-Constantin Mierla miconda@gmail.com Date: 2019-08-28T20:55:39+02:00
sl: docs for new params event_callback_fl_ack and event_callback_lres_sent
---
Modified: src/modules/sl/doc/sl_params.xml
---
Diff: https://github.com/kamailio/kamailio/commit/f1953708c37f0abd020cffff44991b47... Patch: https://github.com/kamailio/kamailio/commit/f1953708c37f0abd020cffff44991b47...
---
diff --git a/src/modules/sl/doc/sl_params.xml b/src/modules/sl/doc/sl_params.xml index 79db29ab88..6c22e26a90 100644 --- a/src/modules/sl/doc/sl_params.xml +++ b/src/modules/sl/doc/sl_params.xml @@ -91,4 +91,42 @@ modparam("sl", "rich_redirect", 3) </example> </section>
+ <section id="sl.p.event_callback_fl_ack"> + <title><varname>event_callback_fl_ack</varname> (str)</title> + <para> + The name of the KEMI callback function to be executed instead of + event_route[sl:filtered-ack]. This function receives a string parameter. + </para> + <para> + Default value: not set. + </para> + <example> + <title>event_callback_fl_ack example</title> + <programlisting format="linespecific"> +... +modparam("sl", "event_callback_fl_ack", "ksr_event_sl_filtered_ack") +... +</programlisting> + </example> + </section> + + <section id="sl.p.event_callback_lres_sent"> + <title><varname>event_callback_lres_sent</varname> (str)</title> + <para> + The name of the KEMI callback function to be executed instead of + event_route[sl:local-response]. This function receives a string parameter. + </para> + <para> + Default value: not set. + </para> + <example> + <title>event_callback_lres_sent example</title> + <programlisting format="linespecific"> +... +modparam("sl", "event_callback_lres_sent", "ksr_event_sl_local_response") +... +</programlisting> + </example> + </section> + </section>