[sr-dev] Development for v6.0.x is frozen

2024-12-16 Thread Daniel-Constantin Mierla via sr-dev
Hello, the formal notification that the development for the next major version 6.0.0 is now frozen. The focus has to be on testing the master branch. Also, the master branch should not get commits with new features till the branch 6.0 is created, expected to happen in 2-4 weeks, a matter of how t

[sr-dev] git:master:cd518c15: Makefile.defs, CMakeLists.txt: version set to 6.0.0-pre0

2024-12-16 Thread Daniel-Constantin Mierla via sr-dev
Module: kamailio Branch: master Commit: cd518c157cf28a04f703e4cce2f8ed92126b105d URL: https://github.com/kamailio/kamailio/commit/cd518c157cf28a04f703e4cce2f8ed92126b105d Author: Daniel-Constantin Mierla Committer: Daniel-Constantin Mierla Date: 2024-12-17T08:08:17+01:00 Makefile.defs, CMakeLi

[sr-dev] git:master:919b7b14: Makefile.defs, CMakeLists.txt: version set to 6.0.0-dev4

2024-12-16 Thread Daniel-Constantin Mierla via sr-dev
Module: kamailio Branch: master Commit: 919b7b147f380aadd3ef034acd23946edc28624f URL: https://github.com/kamailio/kamailio/commit/919b7b147f380aadd3ef034acd23946edc28624f Author: Daniel-Constantin Mierla Committer: Daniel-Constantin Mierla Date: 2024-12-17T08:04:46+01:00 Makefile.defs, CMakeLi

[sr-dev] Re: [kamailio/kamailio] rtpengine: export subscribe operation functions (PR #4071)

2024-12-16 Thread Farzaneh Soltanzadeh via sr-dev
@Fr-Soltanzadeh commented on this pull request. > @@ -3323,9 +3341,18 @@ static bencode_item_t > *rtpp_function_call(bencode_buffer_t *bencbuf, } /* initialize some basic bencode items */ - ng_flags.dict = bencode_dictionary(bencbuf); + if(!extra_dict) { +

[sr-dev] Re: [kamailio/kamailio] rtpengine: export subscribe operation functions (PR #4071)

2024-12-16 Thread Farzaneh Soltanzadeh via sr-dev
@Fr-Soltanzadeh pushed 1 commit. b63d8d1badab990b5f3af42c61eedff701da74df rtpengine: export subscribe operation functions -- View it on GitHub: https://github.com/kamailio/kamailio/pull/4071/files/5f5c206e2e465ce2e4184364c8620323c7eab3ef..b63d8d1badab990b5f3af42c61eedff701da74df You are receiv

[sr-dev] Re: [kamailio/kamailio] rtpengine: export subscribe operation functions (PR #4071)

2024-12-16 Thread Farzaneh Soltanzadeh via sr-dev
@Fr-Soltanzadeh commented on this pull request. > + if(sess->branch != RTPENGINE_ALL_BRANCHES) + bencode_dictionary_add_str(dict, "via-branch", viabranch); + if(to_tag && to_tag->len) + bencode_dictionary_add_str(dict, "to-tag", to_tag); + if(copy_flag

[sr-dev] Re: [kamailio/kamailio] rtpengine: export subscribe operation functions (PR #4071)

2024-12-16 Thread Farzaneh Soltanzadeh via sr-dev
@Fr-Soltanzadeh commented on this pull request. > + if(sess->callid) + bencode_dictionary_add_str(dict, "call-id", sess->callid); + else if(sess->msg) + bencode_dictionary_add_str(dict, "call-id", &sess->msg->callid->body); + if(sess->branch != RTPENG

[sr-dev] Re: [kamailio/kamailio] rtpengine: export subscribe operation functions (PR #4071)

2024-12-16 Thread Farzaneh Soltanzadeh via sr-dev
@Fr-Soltanzadeh pushed 1 commit. 5f5c206e2e465ce2e4184364c8620323c7eab3ef rtpengine: export subscribe operation functions -- View it on GitHub: https://github.com/kamailio/kamailio/pull/4071/files/e8b5c175aa2c2dd6385e04ba9c69c99164a05ab3..5f5c206e2e465ce2e4184364c8620323c7eab3ef You are receiv

[sr-dev] [kamailio/kamailio] tls_wolfssl: crash qm_free / qm_debug_check_frag (Issue #4074)

2024-12-16 Thread Fred Posner via sr-dev
### Introduction First, I apologize for the lack of detail here. I am unable to get a core dump and as a production box, I was unable to run in debug mode. ### Description Using Kamailio 5.8.4 on Debian 12, every 60-80 minutes, the software would crash, blaming tls_wolfssl, such as: ``` 2024-

[sr-dev] Re: [kamailio/kamailio] Setting $xavp(reg=>q) has no effect (Issue #4068)

2024-12-16 Thread Benoît Panizzon via sr-dev
Re-Tested and closing. When paying attention to correctly populate the reg XAVP (watch out for if statements and loops) then the values set seem to work as intended even in 5.7. So basically usage error. Sorry, about not noticing this. -- Reply to this email directly or view it on GitHub: http

[sr-dev] Re: [kamailio/kamailio] Setting $xavp(reg=>q) has no effect (Issue #4068)

2024-12-16 Thread Benoît Panizzon via sr-dev
Closed #4068 as completed. -- Reply to this email directly or view it on GitHub: https://github.com/kamailio/kamailio/issues/4068#event-15670875452 You are receiving this because you are subscribed to this thread. Message ID: ___ Kamailio - Development

[sr-dev] [kamailio/kamailio] xhttp_prom: new xhttp_prom_tags paramete (PR #4073)

2024-12-16 Thread Christian Berger via sr-dev
- allows custom tags to be added to prometheus metrics - Addresses GH issue #4021