Module: kamailio
Branch: master
Commit: 227b49c4a0049b72079101d3e4c407755d0b2fb0
URL: https://github.com/kamailio/kamailio/commit/227b49c4a0049b72079101d3e4c4077…
Author: Kamailio Dev <kamailio.dev(a)kamailio.org>
Committer: Kamailio Dev <kamailio.dev(a)kamailio.org>
Date: 2017-09-11T09:31:34+02:00
modules: readme files regenerated - p_usrloc ... [skip ci]
---
Modified: src/modules/p_usrloc/README
---
Diff: https://github.com/kamailio/kamailio/commit/227b49c4a0049b72079101d3e4c4077…
Patch: https://github.com/kamailio/kamailio/commit/227b49c4a0049b72079101d3e4c4077…
---
diff --git a/src/modules/p_usrloc/README b/src/modules/p_usrloc/README
index 0b8356e4f7..97f7d37f60 100644
--- a/src/modules/p_usrloc/README
+++ b/src/modules/p_usrloc/README
@@ -599,7 +599,7 @@ modparam("p_usrloc", "default_db_type", "cluster")
value. If it is set to 0, the old style using aor, contact and call-id
is done.
- Default value is “1”.
+ Default value is “0”.
Can be set at runtime, e.g.:
$ kamcmd cfg.set_now_int p_usrloc db_ops_ruid 1
@@ -615,7 +615,7 @@ modparam("p_usrloc", "db_ops_ruid", 0)
UPDATE DB operations. It is recommended to set this parameter if you
use Cassandra as a DB backend.
- Default value is “0”.
+ Default value is “1”.
Can be set at runtime, e.g.:
$ kamcmd cfg.set_now_int p_usrloc db_update_as_insert 1
Hello,
I have some feature required changes in acc module.
In acc module we getting cdrs in database only which have
METHOD=INVITE
METHOD=BYE
but in my setup I also get
METHOD=OPTIONS
so I need this entry also in acc table in kamailio database.
so which changes i need to do in kamailio acc module.... or other......
my cdrs log I paste below which have mehod=options
"Sep 7 07:16:53 sip /usr/local/sbin/kamailio[29264]: NOTICE: acc [acc.c:317]: acc_log_request(): ACC: request accounted: timestamp=1504783013;method=OPTIONS;from_tag=eUC9UgGrD;to_tag=j90H6yy5pU6Xc;call_id=2xJd0KCt-P;code=200;reason=OK;calling=46566464645;called=you;egressIP=kamailio.org;src_ip=1.0.0.127;to=<sip:+918866213320@sip.call.org>;tag=j90H6yy5pU6Xc;from=sip:918888888888@localhost;contact=;pai=;uri=sip:you@kamailio.org;onnet=0;rate=0.000333333"
Thanks..
--
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/1229
Module: kamailio
Branch: 5.0
Commit: 6c749dea59d8f35b8a5303baba540edc2295cd92
URL: https://github.com/kamailio/kamailio/commit/6c749dea59d8f35b8a5303baba540ed…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Committer: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: 2017-09-07T15:29:58+02:00
tm: reset T_ASYNC_CONTINUE once t_continue() callback is executed
- by having it still set, the reply field was not reset, causing to free
an invalid pointer when transaction was destroyed, reported by Vitaliy
Aleksandrov
- set reply of suspended request branch to FAKED_REPLY on continue,
the code was already set to 500 - make it coherent with the local
replied transactions
- reset cloned reply under lock for suspended reply branch and free it
later via backup pointer - safer if someone risks to access the
suspended reply branch (should happen now, just future proof)
(cherry picked from commit b672d8ef63715cf816390a05ce7a441377c3e468)
---
Modified: src/modules/tm/t_suspend.c
---
Diff: https://github.com/kamailio/kamailio/commit/6c749dea59d8f35b8a5303baba540ed…
Patch: https://github.com/kamailio/kamailio/commit/6c749dea59d8f35b8a5303baba540ed…