[sr-dev] [kamailio/kamailio] Kazoo: added basic kemi support (#2324)

2020-05-11 Thread tao-communications
llback parameter in documentation * Merge branch 'master' of https://github.com/tao-communications/kamailio -- File Changes -- M src/modules/kazoo/doc/kazoo_admin.xml (22) M src/modules/kazoo/kazoo.c (105) M src/modules/kazoo/kz_amqp.c (100) M src/modules/kazoo/kz_amqp.

Re: [sr-dev] [kamailio/kamailio] Kazoo: added basic kemi support (#2324)

2020-05-20 Thread tao-communications
@tao-communications pushed 1 commit. 0aca2cd084b1b817426db170a7cc9765ebbd1d2a kazoo: -- You are receiving this because you are subscribed to this thread. View it on GitHub: https://github.com/kamailio/kamailio/pull/2324/files/9f0d3ce382bb47fdc2f4c050712bc3279aa6f015

Re: [sr-dev] [kamailio/kamailio] Kazoo: added basic kemi support (#2324)

2020-05-20 Thread tao-communications
I have addressed the suggested changes in the new commit: - removed route_lookup for kazoo:consumer-event as it may or may not exist - depending on using cfg or kemi: - fire_init_event() calls fire_init_event_cfg() or fire_init_event_kemi() - kz_amqp_consumer_event() calls kz_amqp

Re: [sr-dev] [kamailio/kamailio] Kazoo: added basic kemi support (#2324)

2020-05-20 Thread tao-communications
@tao-communications commented on this pull request. > +if(faked_msg_init()<0) +{ +LM_ERR("failed to init kazoo local sip msg\n"); +return -1; +} + This has been removed. -- You are receiving this because you are subscribed to this thread. Rep

Re: [sr-dev] [kamailio/kamailio] Kazoo: added basic kemi support (#2324)

2020-05-20 Thread tao-communications
@tao-communications commented on this pull request. > +sr_kemi_eng_t *keng = NULL; + if(kazoo_event_callback.s!=NULL && kazoo_event_callback.len>0) { + keng = sr_kemi_eng_get(); + if(keng==NULL) { + LM_ERR("

Re: [sr-dev] [kamailio/kamailio] Kazoo: added basic kemi support (#2324)

2020-05-20 Thread tao-communications
@tao-communications commented on this pull request. > + if (kazoo_route_no>=0) { + rt = route_get(&event_rt, "kazoo:mod-init"); +if(rt>=0 && event_rt.rlist[rt]!=NULL) { + LM_DBG("executing event_route[kazoo

Re: [sr-dev] [kamailio/kamailio] Kazoo: added basic kemi support (#2324)

2020-05-20 Thread tao-communications
@tao-communications commented on this pull request. > + if (kazoo_route_no>=0) { sprintf(buffer, "kazoo:consumer-event-%.*s-%.*s",ev_category.len, ev_category.s, ev_name.len, ev_name.s); -for (p=buffer ; *p; ++p) *p = tolower(*p); -for (p=buffer ; *p; ++p)

Re: [sr-dev] [kamailio/kamailio] Kazoo: added basic kemi support (#2324)

2020-05-20 Thread tao-communications
@tao-communications commented on this pull request. > - rt = route_get(&event_rt, "kazoo:mod-init"); - if(rt>=0 && event_rt.rlist[rt]!=NULL) { - LM_DBG("executing event_route[kazoo:mod-init] (%d)\n", rt);

Re: [sr-dev] [kamailio/kamailio] Kazoo: added basic kemi support (#2324)

2020-05-21 Thread tao-communications
@tao-communications pushed 1 commit. dc5861ed310bcdfe4189cd0b113e65837bf299d1 kazoo: add basic kemi support -- You are receiving this because you are subscribed to this thread. View it on GitHub: https://github.com/kamailio/kamailio/pull/2324/files/0aca2cd084b1b817426db170a7cc9765ebbd1d2a

Re: [sr-dev] [kamailio/kamailio] Kazoo: added basic kemi support (#2324)

2020-05-21 Thread tao-communications
Thanks for reviewing! I made a new commit to address these. Please let me know if there are further things that need doing. -- 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/2324#issuec

Re: [sr-dev] [kamailio/kamailio] Kazoo: added basic kemi support (#2324)

2020-05-21 Thread tao-communications
I have attempted a git squash and hopefully it's OK. -- 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/2324#issuecomment-632115862___ Kamaili

Re: [sr-dev] [kamailio/kamailio] Kazoo: added basic kemi support (#2324)

2020-05-21 Thread tao-communications
Thank you very much @lazedo and @miconda for the review and support! -- 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/2324#issuecomment-632125456___

[sr-dev] [kamailio/kamailio] rtpengine: added kemi support for block/unblock media/dtmf, and play/… (#2393)

2020-07-07 Thread tao-communications
…stop media functions