[sr-dev] [kamailio/kamailio] lookup_to_dset should be documented (#2623)

2021-02-04 Thread Alessio Garzi
The function lookup_to_dset() is a config command implemented inside the registrar module. https://github.com/kamailio/kamailio/blob/351efd29d332703e79104a106ade08c9d1df6e20/src/modules/registrar/registrar.c#L183 As you can see from the link above, It triggers w_lookup_to_dset() and it ends up

[sr-dev] [kamailio/kamailio] SDP filtering issues with sdpops module (#2755)

2021-06-01 Thread Alessio Garzi
In order to filter some specific codes from the SDP I am using this functions from sdpops module - sdp_keep_codecs_by_name() - sdp_remove_codecs_by_name() - sdp_keep_codecs_by_id - sdp_remove_codecs_by_id and since they use the same code for filtering the problem I am going to describe affects

Re: [sr-dev] [kamailio/kamailio] SDP filtering issues with sdpops module (#2755)

2021-06-09 Thread Alessio Garzi
thanks a lot @miconda and yes... for now I will try to write a workaround using remove_line_by_prefix inside my kamailio config files, thx for your suggestions. -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github

[sr-dev] [kamailio/kamailio] pua_dialoginfo + forking proxy results in wrong blf (Issue #2906)

2021-10-27 Thread Alessio Garzi
### Description I have a problem with publish/notify messages generated from Kamailio towards a monitoring device after multiple branches has been created. When the call is forked by kamailio, invites are generated towards each callee user agent depending on how many branches we have in the call.

[sr-dev] [kamailio/kamailio] Statistic counters for LCR module (Issue #3372)

2023-02-13 Thread Alessio Garzi
### Description I am in need to get some statistic counters related to each lcr gw currently loaded in Kamailio. Kamailio already provides the counters I need inside the KEX module with the following command: ``` kamcmd> stats.get_statistics core: core:bad_URIs_rcvd = 69 core:bad_msg_hdr = 2 cor

[sr-dev] Re: [kamailio/kamailio] Statistic counters for LCR module (Issue #3372)

2023-02-14 Thread Alessio Garzi
Thank you for your replies. The main point on this feature is that I need the counters to be updated whenever there is a lcr reload tables to detect a new peer. I tried implementing something inside the KEX module since it already has something similar but I soon realized it's quite complicated t

[sr-dev] [kamailio/kamailio] lcr: add counters per gateway (PR #3391)

2023-03-10 Thread Alessio Garzi