Module: kamailio
Branch: 5.4
Commit: 755867b920e4e0d17a4bdf447a0d59a06875f8e1
URL: https://github.com/kamailio/kamailio/commit/755867b920e4e0d17a4bdf447a0d59a…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Committer: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: 2020-10-12T10:11:45+02:00
phonenum: note about the role of country code name for phonenum_match_cn()
(cherry picked from commit dfd6c3966ed70d111a9196076bc29767c395d814)
---
Modified: src/modules/phonenum/doc/phonenum_admin.xml
---
Diff: https://github.com/kamailio/kamailio/commit/755867b920e4e0d17a4bdf447a0d59a…
Patch: https://github.com/kamailio/kamailio/commit/755867b920e4e0d17a4bdf447a0d59a…
---
diff --git a/src/modules/phonenum/doc/phonenum_admin.xml b/src/modules/phonenum/doc/phonenum_admin.xml
index d30c2026ee..f3a3e98ede 100644
--- a/src/modules/phonenum/doc/phonenum_admin.xml
+++ b/src/modules/phonenum/doc/phonenum_admin.xml
@@ -156,6 +156,14 @@ if(phonenum_match("1-484-555-8888", "src")) {
(two letter, e.g: "DE", "US", "ES"). The function has to be called
before accessing a key via: $phn(pvc=>key).
</para>
+ <para>
+ Note from libphonenumber library docs: country name code is the region
+ that is expected the number to be from. It is only used if the number
+ being parsed is not written in international format. The country code
+ for the number in this case would be stored as that of the region
+ supplied. If the number is guaranteed to start with a '+' followed
+ by the country calling code, then region 'ZZ'.
+ </para>
<para>
The parameters can be static strings or strings with variables.
</para>
Module: kamailio
Branch: 5.4
Commit: 26fb90fd6ffdb239fa6c2779f281fae78f90c5ef
URL: https://github.com/kamailio/kamailio/commit/26fb90fd6ffdb239fa6c2779f281fae…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Committer: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: 2020-10-12T10:07:23+02:00
topos: docs - more details about what SIP traffic is handled
(cherry picked from commit 878971f2c0bc32233b6f18728f9b88537b3d19e8)
---
Modified: src/modules/topos/doc/topos_admin.xml
---
Diff: https://github.com/kamailio/kamailio/commit/26fb90fd6ffdb239fa6c2779f281fae…
Patch: https://github.com/kamailio/kamailio/commit/26fb90fd6ffdb239fa6c2779f281fae…
---
diff --git a/src/modules/topos/doc/topos_admin.xml b/src/modules/topos/doc/topos_admin.xml
index 8b3e2a0515..fa4f97b4d6 100644
--- a/src/modules/topos/doc/topos_admin.xml
+++ b/src/modules/topos/doc/topos_admin.xml
@@ -16,20 +16,23 @@
<section>
<title>Overview</title>
<para>
- This module offers topology hiding by stripping the SIP routing
- headers that show topology details.
+ This module offers topology hiding for INVITE-based dialogs, by stripping
+ the SIP routing headers that show topology details .
The script interpreter gets the SIP messages with full content,
so all existing functionality is preserved.
</para>
<para>
The module is transparent for the configuration writer. It only needs to be
- loaded (tune the parameters if needed).
+ loaded (tune the module parameters if needed).
</para>
<para>
It also works for SIP MESSAGE or other requests that do not create
- a call dialog -- record_route() must be used for them as well, the
+ a dialog -- record_route() must be used for them as well, the
headers are not going to be in the messages sent to the network, they
are needed to know local addresses used to communicate with each side.
+ At this moment it is not designed to work for presence (SUBSCRIBE-based)
+ dialogs. The REGISTER and PUBLISH requests are skipped from processing
+ by this module, expected to be terminated on a local SIP server.
</para>
</section>
<section>