Re: [sr-dev] [kamailio/kamailio] Kamailio 5.4.4 extremely slow carrierroute preloading (#2653)

2021-03-10 Thread hdikme
@miconda @henningw sorry for the late reply, we have started working on the issue as well. -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub:

Re: [sr-dev] [kamailio/kamailio] p_usrloc: new parameter "mdb_availability_control" has been created. (#1529)

2018-05-23 Thread hdikme
hdikme commented on this pull request. > @@ -102,13 +102,16 @@ int ul_db_child_init(void) { if(ul_db_child_locnr_init() == -1) return -1; LM_INFO("location number is %d\n", max_loc_nr); - if(db_master_write){ +lock_get(_on_master_db

Re: [sr-dev] [kamailio/kamailio] p_usrloc: new parameter "mdb_availability_control" has been created. (#1529)

2018-05-23 Thread hdikme
hdikme commented on this pull request. > @@ -677,6 +677,26 @@ modparam("usrloc", "db_update_as_insert", 1) ... modparam("p_usrloc", "default_db_url", "mysql://ser:ser@localhost/ser") ... + Done! -- You are receiving this because y

Re: [sr-dev] [kamailio/kamailio] p_usrloc: new parameter "mdb_availability_control" has been created. (#1529)

2018-05-23 Thread hdikme
hdikme commented on this pull request. > @@ -307,6 +309,13 @@ static int mod_init(void) } #endif + if((write_on_master_db_shared = shm_malloc(sizeof(dbm_write_t))) == NULL) { The parameter will be created once at the beginning of mod_init and used so long as the process r

Re: [sr-dev] [kamailio/kamailio] p_usrloc: new parameter "mdb_availability_control" has been created. (#1529)

2018-05-23 Thread hdikme
hdikme commented on this pull request. > @@ -123,5 +123,11 @@ extern int connection_expires; extern int alg_location; extern int max_loc_nr; +typedef struct dbm_write { has been changed with "db_shared_param". -- You are receiving this because you are subscribed to this

Re: [sr-dev] [kamailio/kamailio] p_usrloc: new parameter "mdb_availability_control" has been created. (#1529)

2018-05-22 Thread hdikme
hdikme commented on this pull request. > @@ -96,7 +96,10 @@ void check_dbs(unsigned int ticks, void *param){ ul_db_handle_list_t * tmp2, * new_element; int found; int i; - + + if(mdb_availability_control) { correct, i m removing the one ins

Re: [sr-dev] [kamailio/kamailio] rtpengine: setting tos value for the control commands (#1442)

2018-02-20 Thread hdikme
hdikme commented on this pull request. > @@ -1675,6 +1677,20 @@ static int build_rtpp_socks() { LM_WARN("Failed enable set MTU discovery socket option\n"); #endif + if((0 <= control_cmd_tos) &&

Re: [sr-dev] [kamailio/kamailio] rtpengine: setting tos value for the control commands (#1442)

2018-02-19 Thread hdikme
hdikme commented on this pull request. > @@ -1675,6 +1677,19 @@ static int build_rtpp_socks() { LM_WARN("Failed enable set MTU discovery socket option\n"); #endif + if((0 <= control_cmd_tos) &&

[sr-dev] [kamailio/kamailio] rtpengine: setting tos value for the control commands (#1442)

2018-02-15 Thread hdikme
- A parameter "control_cmd_tos" has been created in order to set the type of service for the control channel. Pre-Submission Checklist - [ ] Commit message has the format required by CONTRIBUTING guide - [ ] Commits are split per component (core, individual modules, libs, utils,

Re: [sr-dev] [kamailio/kamailio] Control command tos (#1441)

2018-02-15 Thread hdikme
Closed #1441. -- 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/pull/1441#event-1475599549___ Kamailio (SER) - Development Mailing List

[sr-dev] [kamailio/kamailio] Control command tos (#1441)

2018-02-15 Thread hdikme
Pre-Submission Checklist - [X] Commit message has the format required by CONTRIBUTING guide - [X] Commits are split per component (core, individual modules, libs, utils, ...) - [X] Each component has a single commit (if not, squash them into one commit) - [X] No commits to README

Re: [sr-dev] [kamailio/kamailio] cfg_rpc: extending the functionality of cfg.get command (#1321)

2017-12-22 Thread hdikme
I have tested it with the version 5.0.1 using kamctl rpc ... and the result hasn't changed. n = rpc->scan(c, "S*S", , ); n equals to -1 in case of using only the group name. -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub:

Re: [sr-dev] [kamailio/kamailio] cfg_rpc: extending the functionality of cfg.get command (#1321)

2017-12-08 Thread hdikme
@miconda - I have tested the code with the changes based on your review. First part is indeed more appropriate (S*S) but i have a problem with the value of n. If only one parameter (group name) is given , n is still assigned -1. Either was S*S or SS returns -1. What do you think? -- You are

[sr-dev] [kamailio/kamailio] cfg_rpc: extending the functionality of cfg.get command (#1321)

2017-11-20 Thread hdikme
- rpc_get function can be also called with only entering the group name information. Before it used to work only with group name and variable name and returning the value for a variable. With the enhancement, it is also possible to retrieve all variable values belonging to a specific group.

[sr-dev] [kamailio/kamailio] carrierroute: warning for the same carrier/domain having routes with only 0 probability (#1233)

2017-09-12 Thread hdikme
Pre-Submission Checklist - [x] Commit message has the format required by CONTRIBUTING guide - [x] Commits are split per component (core, individual modules, libs, utils, ...) - [x] Each component has a single commit (if not, squash them into one commit) - [x] No commits to README

Re: [sr-dev] [kamailio/kamailio] carrierroute: warning for the same carrier/domain having routes with only 0 probability (#1232)

2017-09-12 Thread hdikme
Closed #1232. -- 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/pull/1232#event-1245286133___ Kamailio (SER) - Development Mailing List

Re: [sr-dev] [kamailio/kamailio] carrierroute: warning for the same carrier/domain having routes with only 0 probability (#1232)

2017-09-12 Thread hdikme
Following the commit based on your comment, your comment "Please change query_done to false here and adapt the code accordingly. The name of the variable should reflect the value it holds." disappeared but i have done the requested changes. -- You are receiving this because you are

Re: [sr-dev] [kamailio/kamailio] carrierroute: warning for the same carrier/domain having routes with only 0 probability (#1232)

2017-09-12 Thread hdikme
@hdikme pushed 2 commits. 4aaa0af carrierroute: warning for the same carrier/domain having routes with only 0 probability c275210 Merge branch 'master' of https://github.com/hdikme/kamailio -- You are receiving this because you are subscribed to this thread. View it on GitHub: https

[sr-dev] [kamailio/kamailio] carrierroute: warning for the same carrier/domain having routes with only 0 probability (#1232)

2017-09-12 Thread hdikme
Pre-Submission Checklist - [x] Commit message has the format required by CONTRIBUTING guide - [x] Commits are split per component (core, individual modules, libs, utils, ...) - [x] Each component has a single commit (if not, squash them into one commit) - [x] No commits to README

[sr-dev] [kamailio/kamailio] configuration reset function (cfg.reset) (#1181)

2017-07-04 Thread hdikme
Pre-Submission Checklist - [x] Commit message has the format required by CONTRIBUTING guide - [x] Commits are split per component (core, individual modules, libs, utils, ...) - [x] Each component has a single commit (if not, squash them into one commit) - [x] No commits to README

[sr-dev] [kamailio/kamailio] Cfg reset function (#1179)

2017-07-04 Thread hdikme
Pre-Submission Checklist - [x] Commit message has the format required by CONTRIBUTING guide - [ ] Commits are split per component (core, individual modules, libs, utils, ...) - [ ] Each component has a single commit (if not, squash them into one commit) - [x] No commits to README

Re: [sr-dev] [kamailio/kamailio] Cfg reset (#1178)

2017-07-04 Thread hdikme
@hdikme pushed 2 commits. e05bf7d Compilation problem has been solved 86c9737 Merge branch 'master' of https://github.com/kamailio/kamailio into cfg_reset -- You are receiving this because you are subscribed to this thread. View it on GitHub: https://github.com/kamailio/kamailio/pull/1178

Re: [sr-dev] [kamailio/kamailio] Cfg reset (#1178)

2017-07-04 Thread hdikme
Closed #1178. -- 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/pull/1178#event-1149272167___ Kamailio (SER) - Development Mailing List

[sr-dev] [kamailio/kamailio] Cfg reset (#1178)

2017-07-04 Thread hdikme
Pre-Submission Checklist - [x] Commit message has the format required by CONTRIBUTING guide - [ ] Commits are split per component (core, individual modules, libs, utils, ...) - [ ] Each component has a single commit (if not, squash them into one commit) - [x] No commits to README

Re: [sr-dev] [kamailio/kamailio] rtpengine: Delete flags & delete handling improvement (#1103)

2017-05-04 Thread hdikme
@hdikme pushed 1 commit. 50e56a2 rtpengine: Delete flags & delete handling improvement -- You are receiving this because you are subscribed to this thread. View it on GitHub: https://github.com/kamailio/kamailio/pull/1103/files/3155cf5aced56757506174fd9c018930eba1

Re: [sr-dev] [kamailio/kamailio] rtpengine: Delete flags & delete handling improvement (#1103)

2017-05-02 Thread hdikme
Thank you, i will make the changes by taking your comments into account. -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub:

[sr-dev] [kamailio/kamailio] rtpengine: Delete flags & delete handling improvement (#1103)

2017-04-28 Thread hdikme
-Extending rtpengine_delete() in order to enable specifying Call-ID, To-Tag and From-Tag for timed out dialogs. -Matching the calls to rtpengine machine correctly. You can view, comment on, or merge this pull request online at: https://github.com/kamailio/kamailio/pull/1103 -- Commit Summary