Module: kamailio
Branch: master
Commit: 313f5d85faff333adf8ecece6d23bf6db8443164
URL: https://github.com/kamailio/kamailio/commit/313f5d85faff333adf8ecece6d23bf6…
Author: Kamailio Dev <kamailio.dev(a)kamailio.org>
Committer: Kamailio Dev <kamailio.dev(a)kamailio.org>
Date: 2020-10-16T12:01:21+02:00
modules: readme files regenerated - carrierroute ... [skip ci]
---
Modified: src/modules/carrierroute/README
---
Diff: https://github.com/kamailio/kamailio/commit/313f5d85faff333adf8ecece6d23bf6…
Patch: https://github.com/kamailio/kamailio/commit/313f5d85faff333adf8ecece6d23bf6…
---
diff --git a/src/modules/carrierroute/README b/src/modules/carrierroute/README
index 1dfc46d86c..ad924c1ca2 100644
--- a/src/modules/carrierroute/README
+++ b/src/modules/carrierroute/README
@@ -214,10 +214,10 @@ Chapter 1. Admin Guide
1. Overview
- A module which provides routing, balancing and blacklisting
+ A module which provides routing, balancing and blocklisting
capabilities.
- The module provides routing, balancing and blacklisting capabilities.
+ The module provides routing, balancing and blocklisting capabilities.
It reads routing entries from a database source or from a config file
at Kamailio startup. It can uses one routing tree (for one carrier), or
if needed for every user a different routing tree (unique for each
@@ -1182,7 +1182,7 @@ modparam("carrierroute", "carrierroute_strip_col", "strip")
Name of column contains the rewrite prefixes. Here you can define a
rewrite prefix for the localpart of the SIP URI. An empty field
- represents a blacklist entry, anything else is put as domain part into
+ represents a blocklist entry, anything else is put as domain part into
the Request URI of the SIP message.
Example 2.11. Set carrierroute_rewrite_host_col parameter
Module: kamailio
Branch: master
Commit: 134bf80ba553f6855b39bdb957edfb489e4b1d39
URL: https://github.com/kamailio/kamailio/commit/134bf80ba553f6855b39bdb957edfb4…
Author: Lucian Balaceanu <lucian.balaceanu(a)1and1.ro>
Committer: Lucian Balaceanu <lucian.balaceanu(a)1and1.ro>
Date: 2020-10-16T12:48:25+03:00
carrierroute: terminology changes
---
Modified: src/modules/carrierroute/carrierroute.c
Modified: src/modules/carrierroute/cr_func.c
Modified: src/modules/carrierroute/doc/carrierroute_admin.xml
Modified: src/modules/carrierroute/doc/carrierroute_db.xml
---
Diff: https://github.com/kamailio/kamailio/commit/134bf80ba553f6855b39bdb957edfb4…
Patch: https://github.com/kamailio/kamailio/commit/134bf80ba553f6855b39bdb957edfb4…
---
diff --git a/src/modules/carrierroute/carrierroute.c b/src/modules/carrierroute/carrierroute.c
index 79f8f2e2dc..74705caa25 100644
--- a/src/modules/carrierroute/carrierroute.c
+++ b/src/modules/carrierroute/carrierroute.c
@@ -27,7 +27,7 @@
/*!
* \defgroup carrierroute CARRIERROUTE :: The Kamailio carrierroute Module
- * The module provides routing, balancing and blacklisting capabilities.
+ * The module provides routing, balancing and blocklisting capabilities.
* It reads routing entries from a database source or from a config file
* at Kamailio startup. It can uses one routing tree (for one carrier),
* or if needed for every user a different routing tree (unique for each carrier)
diff --git a/src/modules/carrierroute/cr_func.c b/src/modules/carrierroute/cr_func.c
index c4ce4d52a0..46c6902684 100644
--- a/src/modules/carrierroute/cr_func.c
+++ b/src/modules/carrierroute/cr_func.c
@@ -402,7 +402,7 @@ static int actually_rewrite(const struct route_rule *rs, str *dest,
memcpy(p, AT_SIGN.s, AT_SIGN.len);
p += AT_SIGN.len;
}
- /* this could be an error, or a blacklisted destination */
+ /* this could be an error, or a blocklisted destination */
if (rs->host.len == 0) {
*p = '\0';
return -1;
diff --git a/src/modules/carrierroute/doc/carrierroute_admin.xml b/src/modules/carrierroute/doc/carrierroute_admin.xml
index dee8d006f5..3b883d7515 100644
--- a/src/modules/carrierroute/doc/carrierroute_admin.xml
+++ b/src/modules/carrierroute/doc/carrierroute_admin.xml
@@ -13,9 +13,9 @@
<section>
<title>Overview</title>
- <para>A module which provides routing, balancing and blacklisting capabilities.</para>
+ <para>A module which provides routing, balancing and blocklisting capabilities.</para>
<para>
- The module provides routing, balancing and blacklisting capabilities.
+ The module provides routing, balancing and blocklisting capabilities.
It reads routing entries from a database source or from a config file at &kamailio;
startup. It can uses one routing tree (for one carrier), or if needed for every user
a different routing tree (unique for each carrier) for number prefix based routing.
diff --git a/src/modules/carrierroute/doc/carrierroute_db.xml b/src/modules/carrierroute/doc/carrierroute_db.xml
index f755d08a40..fdc0ddfc45 100644
--- a/src/modules/carrierroute/doc/carrierroute_db.xml
+++ b/src/modules/carrierroute/doc/carrierroute_db.xml
@@ -168,7 +168,7 @@ modparam("carrierroute", "carrierroute_strip_col", "strip")
<section>
<title><varname>carrierroute_rewrite_host_col</varname> (string)</title>
<para>Name of column contains the rewrite prefixes. Here you can define a rewrite prefix
- for the localpart of the SIP URI. An empty field represents a blacklist entry, anything else
+ for the localpart of the SIP URI. An empty field represents a blocklist entry, anything else
is put as domain part into the Request URI of the SIP message.</para>
<example>
<title>Set <varname>carrierroute_rewrite_host_col</varname> parameter</title>
Module: kamailio
Branch: master
Commit: 9d672afb4559c4d847de31e1280ab2418d802de6
URL: https://github.com/kamailio/kamailio/commit/9d672afb4559c4d847de31e1280ab24…
Author: Kamailio Dev <kamailio.dev(a)kamailio.org>
Committer: Kamailio Dev <kamailio.dev(a)kamailio.org>
Date: 2020-10-16T09:01:20+02:00
modules: readme files regenerated - secsipid ... [skip ci]
---
Modified: src/modules/secsipid/README
---
Diff: https://github.com/kamailio/kamailio/commit/9d672afb4559c4d847de31e1280ab24…
Patch: https://github.com/kamailio/kamailio/commit/9d672afb4559c4d847de31e1280ab24…
---
diff --git a/src/modules/secsipid/README b/src/modules/secsipid/README
index f2a4bc98e9..a58d511078 100644
--- a/src/modules/secsipid/README
+++ b/src/modules/secsipid/README
@@ -133,7 +133,7 @@ modparam("secsipid", "timeout", 2)
downloading the key using the URL from "info" parameter of the Identity
header, using the value od "timeout" parameter to limit the download
time. The validity of the JWT body in the Identity header is also
- checjed against the "expire" parameter.
+ checked against the "expire" parameter.
The parameters can contain pseudo-variables.
Module: kamailio
Branch: master
Commit: f74f1df842815e8a42d1b4f71b6f98287a625d41
URL: https://github.com/kamailio/kamailio/commit/f74f1df842815e8a42d1b4f71b6f982…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Committer: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: 2020-10-16T08:49:12+02:00
secsipid: docs - small typo
---
Modified: src/modules/secsipid/doc/secsipid_admin.xml
---
Diff: https://github.com/kamailio/kamailio/commit/f74f1df842815e8a42d1b4f71b6f982…
Patch: https://github.com/kamailio/kamailio/commit/f74f1df842815e8a42d1b4f71b6f982…
---
diff --git a/src/modules/secsipid/doc/secsipid_admin.xml b/src/modules/secsipid/doc/secsipid_admin.xml
index ac5884679f..510da9159d 100644
--- a/src/modules/secsipid/doc/secsipid_admin.xml
+++ b/src/modules/secsipid/doc/secsipid_admin.xml
@@ -110,7 +110,7 @@ modparam("secsipid", "timeout", 2)
the function is downloading the key using the URL from "info"
parameter of the Identity header, using the value od "timeout"
parameter to limit the download time. The validity of the JWT
- body in the Identity header is also checjed against the "expire"
+ body in the Identity header is also checked against the "expire"
parameter.
</para>
<para>
With current master, event_route [xhttp:request] is not run. Instead
error message shows up:
Oct 14 20:00:48 lohi /usr/bin/sip-proxy[8820]: ERROR: <core> [core/receive.c:356]: receive_msg(): no via found in request
After spending one hour in trying to figure out, what is wrong in my
config, I build K using 5.4 instead of master and the problem
disappeared.
So I suspect something is broken in master.
-- Juha