Re: [sr-dev] [kamailio/kamailio] Kamailio 4.4) sipcapture_module: ERROR: parse_msg: message=<HEP3#003�> (#599)

2016-09-12 Thread Daniel-Constantin Mierla
Closed #599. -- You are receiving this because you commented. Reply to this email directly or view it on GitHub: https://github.com/kamailio/kamailio/issues/599#event-786140839___ sr-dev mailing list sr-dev@lists.sip-router.org

Re: [sr-dev] [kamailio/kamailio] Kamailio 4.4) sipcapture_module: ERROR: parse_msg: message=<HEP3#003�> (#599)

2016-08-04 Thread Alexandr Dubovikov
Since these commits https://github.com/kamailio/kamailio/commit/181308465ac54ca4a1404eb3f3f189fcf32e0982 https://github.com/kamailio/kamailio/commit/4e789387f8cfe72fa9e8d43f9963033dd3df99cd kamailio can receive HEP in any streaming protocol and use directly $hep pseudovariables . At first HEP

Re: [sr-dev] [kamailio/kamailio] Kamailio 4.4) sipcapture_module: ERROR: parse_msg: message=<HEP3#003�> (#599)

2016-07-13 Thread Alexandr Dubovikov
Daniel, let me prepare the patch for a core event. Unfortunately I can do it only next week. Wbr, Alexandr On 13 July 2016 at 15:47, Daniel-Constantin Mierla wrote: > Is anything else needed here or you sorted out all the variants? > > We can add a new core event if

Re: [sr-dev] [kamailio/kamailio] Kamailio 4.4) sipcapture_module: ERROR: parse_msg: message=<HEP3#003�> (#599)

2016-07-13 Thread Daniel-Constantin Mierla
Is anything else needed here or you sorted out all the variants? We can add a new core event if it simplifies things. --- 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] Kamailio 4.4) sipcapture_module: ERROR: parse_msg: message=<HEP3#003�> (#599)

2016-05-09 Thread Alexandr Dubovikov
unfortunately the non_sip_hook doesn't work in this case, because kamailio does msg parse before call hooks. I will keep using event_exec for DGRAM and add DATA_IN as second alternative for TCP/SCTP streams. --- You are receiving this because you are subscribed to this thread. Reply to this

Re: [sr-dev] [kamailio/kamailio] Kamailio 4.4) sipcapture_module: ERROR: parse_msg: message=<HEP3#003�> (#599)

2016-05-06 Thread Daniel-Constantin Mierla
The nonsip msg hook works for all transports, you can change to it if it helps. There is also SREV_NET_DATA_IN, but that probably needs some extra handling for its response code not to continue processing inside receive_msg(). --- You are receiving this because you are subscribed to this

Re: [sr-dev] [kamailio/kamailio] Kamailio 4.4) sipcapture_module: ERROR: parse_msg: message=<HEP3#003�> (#599)

2016-05-06 Thread Alexandr Dubovikov
@miconda can we replace sr_event_enable to register_nonsip_msg_hook and use it in both transports UDP/TCP ? --- 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] Kamailio 4.4) sipcapture_module: ERROR: parse_msg: message=<HEP3#003�> (#599)

2016-05-06 Thread Alexandr Dubovikov
kamailio's sipcapture module curently do now only SREV_NET_DGRAM_IN hook. ``` /* register DGRAM event */ if(sr_event_register_cb(SREV_NET_DGRAM_IN, hep_msg_received) < 0) { LM_ERR("failed to register SREV_NET_DGRAM_IN event\n"); return -1; } ``` and currently