Module: kamailio
Branch: 4.4
Commit: 915edc834c9a694026b09d8b77dcfc4165d2998f
URL: https://github.com/kamailio/kamailio/commit/915edc834c9a694026b09d8b77dcfc4…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Committer: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: 2016-07-05T11:50:19+02:00
topos: note in docs that masking callid is not implemented yet
(cherry picked from commit 3c358de7683a15573dc1ee608e539ebb2e0122bf)
---
Modified: modules/topos/doc/topos_admin.xml
---
Diff: https://github.com/kamailio/kamailio/commit/915edc834c9a694026b09d8b77dcfc4…
Patch: https://github.com/kamailio/kamailio/commit/915edc834c9a694026b09d8b77dcfc4…
---
diff --git a/modules/topos/doc/topos_admin.xml b/modules/topos/doc/topos_admin.xml
index cf06022..ad74d22 100644
--- a/modules/topos/doc/topos_admin.xml
+++ b/modules/topos/doc/topos_admin.xml
@@ -90,6 +90,11 @@ modparam("topos", "db_url", "&exampledb;")
<section id="topos.p.mask_callid">
<title><varname>mask_callid</varname> (int)</title>
<para>
+ Note: this functionality is not implemented yet - the
+ parameter is present in order to be in pair with topoh
+ module.
+ </para>
+ <para>
Whether to replace or not the Call-ID with another
unique id generated by &kamailio;.
</para>
Module: kamailio
Branch: master
Commit: de5fdc076f51435faffce1e893cac605bf77330d
URL: https://github.com/kamailio/kamailio/commit/de5fdc076f51435faffce1e893cac60…
Author: Kamailio Dev <kamailio.dev(a)kamailio.org>
Committer: Kamailio Dev <kamailio.dev(a)kamailio.org>
Date: 2016-07-05T11:46:22+02:00
modules: readme files regenerated - registrar ...
---
Modified: modules/registrar/README
---
Diff: https://github.com/kamailio/kamailio/commit/de5fdc076f51435faffce1e893cac60…
Patch: https://github.com/kamailio/kamailio/commit/de5fdc076f51435faffce1e893cac60…
---
diff --git a/modules/registrar/README b/modules/registrar/README
index c24f649..0db0238 100644
--- a/modules/registrar/README
+++ b/modules/registrar/README
@@ -926,7 +926,9 @@ lookup_branches("location");
* match_action (optional) - actions to perform when match is
positive.
flag values is as follows:
- + 1 - set xavp_rcd with value from matched contact
+ + 1 - restore the xavps associated with the matched contact
+ + 2 - skip adding the matched location record attributes to
+ xavp_rcd (e.g., the ruid, contact, received, ...)
This function can be used from ANY_ROUTE.
Hello,
I am planning to release tomorrow the v4.2.8 out of branch 4.2 to mark
the end of official packaging for 4.2.x series. From now on, the focus
will be 4.4.x and 4.3.x as stable branches.
I just backported what I found relevant from branch 4.3 to 4.2 -- if
anyone finds some other commits that need to be backported, reply to
mailing lists.
Cheers,
Daniel
--
Daniel-Constantin Mierla
http://www.asipto.com - http://www.kamailio.orghttp://twitter.com/#!/miconda - http://www.linkedin.com/in/miconda
Greetings Lists.
I am having hard time trying to use ndb_cassandra with kamailio. I have
successfully complied the module and kamailio runs without any error.
Below is relevant snippet.
loadmodule "ndb_cassandra.so"
modparam("ndb_cassandra", "host", "192.168.0.103")
modparam("ndb_cassandra", "port", 9160)
$var(keyspace) = 'kamailio';
$var(column_family) = 'numbers_directory';
$var(key) = 15;
$var(column) = 'number';
xlog("L_INFO", "Valus to fetch are $var(keyspace),
$var(column_family), $var(key), $var(column) \n");
* if (cass_retrieve("$var(keyspace)",
"$var(column_family)", "$var(key)", "prefix", "$var(val_read)") > 0) {*
xlog("L_INFO", " ===== ndb_cassandra. Sucess while reading
from Cassandra. val_read: \"$var(val_read)\"\n");
} else {
xlog("L_INFO", " ===== ndb_cassandra. Error while reading
from Cassandra \n");
}
Cassandra Table Structure.
cqlsh:kamailio> describe numbers_directory;
CREATE TABLE kamailio.numbers_directory (
id int PRIMARY KEY,
description text,
number text
) WITH bloom_filter_fp_chance = 0.01
AND caching = '{"keys":"ALL", "rows_per_partition":"NONE"}'
AND comment = ''
AND compaction = {'class':
'org.apache.cassandra.db.compaction.SizeTieredCompactionStrategy'}
AND compression = {'sstable_compression':
'org.apache.cassandra.io.compress.LZ4Compressor'}
AND dclocal_read_repair_chance = 0.1
AND default_time_to_live = 0
AND gc_grace_seconds = 864000
AND max_index_interval = 2048
AND memtable_flush_period_in_ms = 0
AND min_index_interval = 128
AND read_repair_chance = 0.0
AND speculative_retry = '99.0PERCENTILE';
cqlsh:kamailio> select * from numbers_directory;
id | description | number
----+-------------+-----------
15 | null | 212456789
When i make a call i get this in logs.
Jul 1 19:10:42 debian ./kamailio[8142]: INFO: <script>: Valus to fetch are
kamailio, numbers_directory, 15, number
Jul 1 19:10:42 debian ./kamailio[8142]: INFO: <script>: =====
ndb_cassandra. *Error while reading from Cassandra*
I am stuck at this. Does anybody able to use kamailio with cassandra or can
share their configuration?
Any pointer on this is much appreciated.
Best Regards,
Aqs Younas
Calls to cfg_get(tm, tm_cfg, default_reason) and cfg_get(tm, tm_cfg, tm_auto_inv_100_r) on Solaris/SPARC cause a bus error. Looking though some mailing list archives, it appears a similar issue was fixed in the registrar module but I couldn't find patch referenced.
---
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/kamailio/kamailio/issues/655