Module: kamailio
Branch: 5.5
Commit: 446e716ff4c7e853ac9239cff8784cd30b7b8e8a
URL:
https://github.com/kamailio/kamailio/commit/446e716ff4c7e853ac9239cff8784cd…
Author: Kamailio Dev <kamailio.dev(a)kamailio.org>
Committer: The Root <root(a)kamailio.org>
Date: 2021-08-20T10:01:16+02:00
modules: readme files regenerated - modules ... [skip ci]
---
Modified: src/modules/siputils/README
---
Diff:
https://github.com/kamailio/kamailio/commit/446e716ff4c7e853ac9239cff8784cd…
Patch:
https://github.com/kamailio/kamailio/commit/446e716ff4c7e853ac9239cff8784cd…
---
diff --git a/src/modules/siputils/README b/src/modules/siputils/README
index 6a1ae76b9f..87d3ecf9e4 100644
--- a/src/modules/siputils/README
+++ b/src/modules/siputils/README
@@ -761,7 +761,7 @@ if (is_alphanumex("$rU", "+.-_")) {
This function will encode uri-s inside Contact header in the following
manner sip:username:password@ip:port;transport=protocol goes
- sip:encoding_prefix*username*ip*port*protocol@hostpart.
+ sip:encoding_prefix*username*password*ip*port*protocol@hostpart.
* is the default separator and can be changed by setting the
contact_flds_separator module parameter.
@@ -787,9 +787,9 @@ if (src_ip == 10.0.0.0/8)
encode_contact("natted_client","1.2.3.4");
4.20. decode_contact()
This function will decode the request URI. If the RURI is in the format
- sip:encoding_prefix*username*ip*port*protocol@hostpart it will be
- decoded to sip:username:password@ip:port;transport=protocol It uses the
- default set parameter for contact encoding separator.
+ sip:encoding_prefix*username*password*ip*port*protocol@hostpart it will
+ be decoded to sip:username:password@ip:port;transport=protocol. It uses
+ the default set parameter for contact encoding separator.
The function returns negative on error, 1 on success.