### Description
Typo in function example at src/modules/siputils/doc/siputils_admin.xml:
Instead of:
...
if(is_first_hop()) { ... }
...
if(is_first_hop_mode("1")) { ... }
...
example should be:
...
if (is_first_hop()) { ... }
...
if (is_first_hop("1")) { ... }
...
--
Reply to this email directly or view it on GitHub:
https://github.com/kamailio/kamailio/issues/3200
You are receiving this because you are subscribed to this thread.
Message ID: <kamailio/kamailio/issues/3200(a)github.com>