[sr-dev] Re: [kamailio/kamailio] Memory usage increases everytime tls.reload is executed (Issue #3823)

2024-05-07 Thread sergey-safarov via sr-dev
@denzs do you have a monitoring tool? Prometheus + Graphana graphs? -- Reply to this email directly or view it on GitHub: https://github.com/kamailio/kamailio/issues/3823#issuecomment-2097644997 You are receiving this because you are subscribed to this thread. Message ID: ___

[sr-dev] Re: [kamailio/kamailio] Memory usage increases everytime tls.reload is executed (Issue #3823)

2024-05-07 Thread Daniel-Constantin Mierla via sr-dev
Probably this part has to be reviewed ... first the tls reload was initially designed to be done rather rarely, when the certificates expires. The CRL feature was also not much in use, at least in what I could experience so far, most of the deployments are with server-side only certificates. Fu

[sr-dev] Re: [kamailio/kamailio] Memory usage increases everytime tls.reload is executed (Issue #3823)

2024-05-07 Thread Sebastian Denz via sr-dev
@sergey-safarov yes we do :) ![image](https://github.com/kamailio/kamailio/assets/239503/e302fe01-0996-4ecf-9d8b-c648a04c1a0e) @miconda at the moment we do the tls.reload unconditionally and quite 'high frequently' to ensure the CRLs are up to date.. of course we can check if the CRL changed, bu

[sr-dev] Re: [kamailio/kamailio] Memory usage increases everytime tls.reload is executed (Issue #3823)

2024-05-07 Thread Sebastian Denz via sr-dev
![image](https://github.com/kamailio/kamailio/assets/239503/ff12acd1-7626-4e8c-b444-bac20c4c8765) This Screenshot is from our dev environment running: ``` while true ; do /usr/sbin/kamcmd tls.reload ; /usr/sbin/kamcmd tls.reload ; sleep 0.5 ; done ``` Parallel watching core.shmmem outpot looks li

[sr-dev] [kamailio/kamailio] sql_query fails from tcp:closed event_route (Issue #3843)

2024-05-07 Thread juha-h via sr-dev
### Description I noticed that sql_query does not work (using latest 5.8 on Debian 12) when called from `tcp:closed` event_route: ``` event_route [tcp:closed] { # Handle TCP connection close # Delete possible leftover registration if ($conid) sql_query("sip_proxy_cache", "DELETE

[sr-dev] Re: [kamailio/kamailio] sql_query fails from tcp:closed event_route (Issue #3843)

2024-05-07 Thread juha-h via sr-dev
Same error with `event_route [websocket:closed]`. -- Reply to this email directly or view it on GitHub: https://github.com/kamailio/kamailio/issues/3843#issuecomment-2097918824 You are receiving this because you are subscribed to this thread. Message ID: _

[sr-dev] Re: [kamailio/kamailio] sql_query fails from tcp:closed event_route (Issue #3843)

2024-05-07 Thread Daniel-Constantin Mierla via sr-dev
Connection close event is executed from TCP main process, which likely has no SQL connection open. Till some point in the past, connection close event was triggered from a few places (from tcp worker processes), but actually it was not done for all cases when the connections were closed, some of

[sr-dev] Re: [kamailio/kamailio] sql_query fails from tcp:closed event_route (Issue #3843)

2024-05-07 Thread juha-h via sr-dev
As I wrote, this used to work for many years and now it does not. It is very important to be able to delete the possible leftover registration if tcp connection from the SIP UA get closed due to some failure situation. Is there somewhere an example how to migrate the above event route action to

[sr-dev] Re: [kamailio/kamailio] sql_query fails from tcp:closed event_route (Issue #3843)

2024-05-07 Thread juha-h via sr-dev
In order to avoid any performance issues, I tried to change the query from ``` sql_query("sip_proxy_cache", "DELETE FROM location WHERE server_id=0 AND connection_id=$conid", "result"); ``` to ``` sql_query_async("sip_proxy_cache", "DELETE FROM location WHERE server_id=0 AND connection_id=$conid

[sr-dev] Re: [kamailio/kamailio] sql_query fails from tcp:closed event_route (Issue #3843)

2024-05-07 Thread juha-h via sr-dev
I tried with async module, but always got error ``` 2024-05-07T17:31:16.143660+03:00 siika /usr/bin/sip-proxy[2910444]: ERROR: async [async_mod.c:462]: ki_async_task_group_route(): invalid usage for faked message ``` and when I read async module README, all its functions deal with SIP request pr

[sr-dev] git:master:446c75e0: ctl: info log on ECONNRESET (connection reset by peer)

2024-05-07 Thread Daniel-Constantin Mierla via sr-dev
Module: kamailio Branch: master Commit: 446c75e0e2194b6e42d768d2e3c79b5f0222905f URL: https://github.com/kamailio/kamailio/commit/446c75e0e2194b6e42d768d2e3c79b5f0222905f Author: Daniel-Constantin Mierla Committer: Daniel-Constantin Mierla Date: 2024-05-07T16:55:24+02:00 ctl: info log on ECONN

[sr-dev] git:master:65bafaff: ctl: removed level and function names from log messages

2024-05-07 Thread Daniel-Constantin Mierla via sr-dev
Module: kamailio Branch: master Commit: 65bafaffd6bcfebc508b774cfbb78120e68bb3f0 URL: https://github.com/kamailio/kamailio/commit/65bafaffd6bcfebc508b774cfbb78120e68bb3f0 Author: Daniel-Constantin Mierla Committer: Daniel-Constantin Mierla Date: 2024-05-07T16:49:49+02:00 ctl: removed level and

[sr-dev] git: new commits in branch 5.8

2024-05-07 Thread Daniel-Constantin Mierla via sr-dev
- URL: https://github.com/kamailio/kamailio/commit/0bf03aa1987b9cff2fc0d776605620e26c163609 Author: Henning Westerholt Date: 2024-05-07T17:05:58+02:00 core: spelling fix in comment and log message (cherry picked from commit db176a4918c0b500f5f051cad16fd8d442450ab7) - URL: https://github.c

[sr-dev] git:5.8:1ee553a6: modules: readme files regenerated - modules ... [skip ci]

2024-05-07 Thread Kamailio Dev via sr-dev
Module: kamailio Branch: 5.8 Commit: 1ee553a6f406af5eb4838a8c46a992c4099dd30b URL: https://github.com/kamailio/kamailio/commit/1ee553a6f406af5eb4838a8c46a992c4099dd30b Author: Kamailio Dev Committer: Kamailio Dev Date: 2024-05-07T17:31:19+02:00 modules: readme files regenerated - modules ... [

[sr-dev] git:5.7:45fd99f5: core: parser/contact - basic validation tests for contact uri

2024-05-07 Thread Daniel-Constantin Mierla via sr-dev
Module: kamailio Branch: 5.7 Commit: 45fd99f53643b56bce65eb9d603a5b81059aa21d URL: https://github.com/kamailio/kamailio/commit/45fd99f53643b56bce65eb9d603a5b81059aa21d Author: Daniel-Constantin Mierla Committer: Daniel-Constantin Mierla Date: 2024-05-07T17:31:21+02:00 core: parser/contact - ba

[sr-dev] git:5.7:ac56db7f: uid_auth_db: spelling fix in documentation

2024-05-07 Thread Daniel-Constantin Mierla via sr-dev
Module: kamailio Branch: 5.7 Commit: ac56db7fab9d1157e89a6daf81915e3058f7178c URL: https://github.com/kamailio/kamailio/commit/ac56db7fab9d1157e89a6daf81915e3058f7178c Author: Henning Westerholt Committer: Daniel-Constantin Mierla Date: 2024-05-07T17:30:16+02:00 uid_auth_db: spelling fix in do

[sr-dev] git:5.7:d9e63ac9: ctl: removed level and function names from log messages

2024-05-07 Thread Daniel-Constantin Mierla via sr-dev
Module: kamailio Branch: 5.7 Commit: d9e63ac912c1f0b3ec71611516ea3e52206b6edf URL: https://github.com/kamailio/kamailio/commit/d9e63ac912c1f0b3ec71611516ea3e52206b6edf Author: Daniel-Constantin Mierla Committer: Daniel-Constantin Mierla Date: 2024-05-07T17:31:35+02:00 ctl: removed level and fu

[sr-dev] git:5.7:ff5d1e73: core: spelling fix in comment and log message

2024-05-07 Thread Daniel-Constantin Mierla via sr-dev
Module: kamailio Branch: 5.7 Commit: ff5d1e73cd04ca84e423cd9efbec4014e9dbc2e4 URL: https://github.com/kamailio/kamailio/commit/ff5d1e73cd04ca84e423cd9efbec4014e9dbc2e4 Author: Henning Westerholt Committer: Daniel-Constantin Mierla Date: 2024-05-07T17:30:08+02:00 core: spelling fix in comment a

[sr-dev] git:5.7:49135f37: core: parser/contact - add limit for max number of contacts

2024-05-07 Thread Daniel-Constantin Mierla via sr-dev
Module: kamailio Branch: 5.7 Commit: 49135f37d94aaf49a1c6b6a47bdc5a80bd3e5028 URL: https://github.com/kamailio/kamailio/commit/49135f37d94aaf49a1c6b6a47bdc5a80bd3e5028 Author: Daniel-Constantin Mierla Committer: Daniel-Constantin Mierla Date: 2024-05-07T17:31:14+02:00 core: parser/contact - ad

[sr-dev] git:5.7:65c8761d: sipcapture: docs - fix default value for parameter

2024-05-07 Thread Daniel-Constantin Mierla via sr-dev
Module: kamailio Branch: 5.7 Commit: 65c8761d9b04d01d0609b09c7ed75c9518f72d77 URL: https://github.com/kamailio/kamailio/commit/65c8761d9b04d01d0609b09c7ed75c9518f72d77 Author: Jannik <40364587+volkl...@users.noreply.github.com> Committer: Daniel-Constantin Mierla Date: 2024-05-07T17:30:50+02:00

[sr-dev] git:5.7:64421e2d: core: parse/contact: jump to error on too many contacts

2024-05-07 Thread Daniel-Constantin Mierla via sr-dev
Module: kamailio Branch: 5.7 Commit: 64421e2d4ed48e4a77cd997e389ae4a5225b40ab URL: https://github.com/kamailio/kamailio/commit/64421e2d4ed48e4a77cd997e389ae4a5225b40ab Author: Daniel-Constantin Mierla Committer: Daniel-Constantin Mierla Date: 2024-05-07T17:31:27+02:00 core: parse/contact: jump

[sr-dev] git:5.7:5566647a: ctl: info log on ECONNRESET (connection reset by peer)

2024-05-07 Thread Daniel-Constantin Mierla via sr-dev
Module: kamailio Branch: 5.7 Commit: 5566647a85f23e753774fa4c87e213c2fbb7b317 URL: https://github.com/kamailio/kamailio/commit/5566647a85f23e753774fa4c87e213c2fbb7b317 Author: Daniel-Constantin Mierla Committer: Daniel-Constantin Mierla Date: 2024-05-07T17:31:41+02:00 ctl: info log on ECONNRES

[sr-dev] Re: [kamailio/kamailio] possible memory corruption in sipcapture module (Issue #3835)

2024-05-07 Thread Sven Uhlig via sr-dev
Thank you for your input so far. All the alternatives seem to work-around the issue but not fulfill our needs. We have debugged a little using `gdb`. We noticed that the value of `msg->rcv->bind_address->address_str` is correct before calling `do_action`. Afterwards, it is wrong. Before: ``` s

[sr-dev] git:5.7:278e29a5: modules: readme files regenerated - modules ... [skip ci]

2024-05-07 Thread Kamailio Dev via sr-dev
Module: kamailio Branch: 5.7 Commit: 278e29a5750401fe5d0e7482792dbb113362103b URL: https://github.com/kamailio/kamailio/commit/278e29a5750401fe5d0e7482792dbb113362103b Author: Kamailio Dev Committer: Kamailio Dev Date: 2024-05-07T17:46:25+02:00 modules: readme files regenerated - modules ... [

[sr-dev] Re: [kamailio/kamailio] sql_query fails from tcp:closed event_route (Issue #3843)

2024-05-07 Thread Daniel-Constantin Mierla via sr-dev
Looking at the code, `sql_query_async(...)` should work, do you get exactly the same error message as with `sql_query()`? As for the use of async module, can you use the `async_task_data()` or `async_task_group_data()` functions? The other ones are intended for processing of SIP requests becaus

[sr-dev] Re: [kamailio/kamailio] sql_query fails from tcp:closed event_route (Issue #3843)

2024-05-07 Thread juha-h via sr-dev
Yes, I'm getting the same error message with sql_query_async: ``` 2024-05-07T19:02:24.167462+03:00 siika /usr/bin/sip-proxy[2948257]: CRITICAL: sqlops [sqlops.c:213]: sql_check_connection(): no database handle with reconnect disabled 2024-05-07T19:02:24.167640+03:00 siika /usr/bin/sip-proxy[29482

[sr-dev] git:master:aeeeb0c2: sipcapture: fix default DB URL docs

2024-05-07 Thread Henning Westerholt via sr-dev
Module: kamailio Branch: master Commit: aeeeb0c2f46c2575639dd725bef78fac64219a07 URL: https://github.com/kamailio/kamailio/commit/aeeeb0c2f46c2575639dd725bef78fac64219a07 Author: Henning Westerholt Committer: Henning Westerholt Date: 2024-05-07T16:14:46Z sipcapture: fix default DB URL docs --

[sr-dev] git:master:3b7754fd: modules: readme files regenerated - sipcapture ... [skip ci]

2024-05-07 Thread Kamailio Dev via sr-dev
Module: kamailio Branch: master Commit: 3b7754fd3a75f849bb7509968843817d5888b2f8 URL: https://github.com/kamailio/kamailio/commit/3b7754fd3a75f849bb7509968843817d5888b2f8 Author: Kamailio Dev Committer: Kamailio Dev Date: 2024-05-07T18:16:09+02:00 modules: readme files regenerated - sipcapture

[sr-dev] Re: [kamailio/kamailio] sql_query fails from tcp:closed event_route (Issue #3843)

2024-05-07 Thread Daniel-Constantin Mierla via sr-dev
Indeed `sql_query_async(...)` makes db connection checks, failing in this case. The db_mysql API function for async query would need only DB URL as a string. I will try to see what alternative can be done for sqlops. -- Reply to this email directly or view it on GitHub: https://github.com/kamai

[sr-dev] Re: [kamailio/kamailio] sql_query fails from tcp:closed event_route (Issue #3843)

2024-05-07 Thread juha-h via sr-dev
With async_task_data() I got it working like this: ``` event_route [tcp:closed] { # Handle TCP connection close # Delete possible leftover registration if ($conid) { async_task_data("clean_location", "$conid"); } route [clean_location] { sql_query_async("sip_proxy_cache", "DEL

[sr-dev] Re: [kamailio/kamailio] sql_query fails from tcp:closed event_route (Issue #3843)

2024-05-07 Thread juha-h via sr-dev
Closed #3843 as completed. -- Reply to this email directly or view it on GitHub: https://github.com/kamailio/kamailio/issues/3843#event-12732879781 You are receiving this because you are subscribed to this thread. Message ID: ___ Kamailio (SER) - Devel

[sr-dev] Re: [kamailio/kamailio] sql_query fails from tcp:closed event_route (Issue #3843)

2024-05-07 Thread juha-h via sr-dev
I'm fine with the above solution and can close this issue. -- Reply to this email directly or view it on GitHub: https://github.com/kamailio/kamailio/issues/3843#issuecomment-2098939975 You are receiving this because you are subscribed to this thread. Message ID:

[sr-dev] git:master:be9af338: tcpops: note about execution of event routes by TCP main process

2024-05-07 Thread Daniel-Constantin Mierla via sr-dev
Module: kamailio Branch: master Commit: be9af338e3afdab1045cdd7c30a72a9ecddcb680 URL: https://github.com/kamailio/kamailio/commit/be9af338e3afdab1045cdd7c30a72a9ecddcb680 Author: Daniel-Constantin Mierla Committer: Daniel-Constantin Mierla Date: 2024-05-07T19:32:39+02:00 tcpops: note about exe

[sr-dev] git:5.8:383a81bb: tcpops: note about execution of event routes by TCP main process

2024-05-07 Thread Daniel-Constantin Mierla via sr-dev
Module: kamailio Branch: 5.8 Commit: 383a81bb9d81e06ab9da99cdaa3def3b63028040 URL: https://github.com/kamailio/kamailio/commit/383a81bb9d81e06ab9da99cdaa3def3b63028040 Author: Daniel-Constantin Mierla Committer: Daniel-Constantin Mierla Date: 2024-05-07T19:34:35+02:00 tcpops: note about execut

[sr-dev] git:5.8:c3f424bd: modules: readme files regenerated - modules ... [skip ci]

2024-05-07 Thread Kamailio Dev via sr-dev
Module: kamailio Branch: 5.8 Commit: c3f424bd6c0f8b9a2557cd58a3e3f5ac586d8c99 URL: https://github.com/kamailio/kamailio/commit/c3f424bd6c0f8b9a2557cd58a3e3f5ac586d8c99 Author: Kamailio Dev Committer: Kamailio Dev Date: 2024-05-07T19:46:19+02:00 modules: readme files regenerated - modules ... [

[sr-dev] git:master:29910ecc: modules: readme files regenerated - tcpops ... [skip ci]

2024-05-07 Thread Kamailio Dev via sr-dev
Module: kamailio Branch: master Commit: 29910ecc8f27cf70aa4490f8ed5188199ad8e612 URL: https://github.com/kamailio/kamailio/commit/29910ecc8f27cf70aa4490f8ed5188199ad8e612 Author: Kamailio Dev Committer: Kamailio Dev Date: 2024-05-07T19:46:10+02:00 modules: readme files regenerated - tcpops ...

[sr-dev] [kamailio/kamailio] Usrloc keepalive: Not sending OPTIONS to UDP endpoints- 5.8.0 and 5.8.1 (Issue #3844)

2024-05-07 Thread Luke Escudé via sr-dev
Running compiled Kamailio 5.8.1 (previously 5.8.0) on Debian 12 64-bit We're seeing an issue with UDP endpoints (this issue does not happen with TCP and TLS) where usrloc will not send OPTIONS packet keepalives. Here are all of our usrloc parameters: modparam("usrloc", "db_mode", 0) modparam("u

[sr-dev] git:5.7:289ab7dd: sipcapture: fix default DB URL docs

2024-05-07 Thread Henning Westerholt via sr-dev
Module: kamailio Branch: 5.7 Commit: 289ab7ddceaaf923edfe15b11361f0acb16c0dde URL: https://github.com/kamailio/kamailio/commit/289ab7ddceaaf923edfe15b11361f0acb16c0dde Author: Henning Westerholt Committer: Henning Westerholt Date: 2024-05-07T19:02:35Z sipcapture: fix default DB URL docs (cher

[sr-dev] git:5.8:29ef69b8: sipcapture: fix default DB URL docs

2024-05-07 Thread Henning Westerholt via sr-dev
Module: kamailio Branch: 5.8 Commit: 29ef69b8807023e082d7c9880c63bee11d4f3b30 URL: https://github.com/kamailio/kamailio/commit/29ef69b8807023e082d7c9880c63bee11d4f3b30 Author: Henning Westerholt Committer: Henning Westerholt Date: 2024-05-07T19:02:16Z sipcapture: fix default DB URL docs (cher

[sr-dev] git:5.8:191aec6e: modules: readme files regenerated - modules ... [skip ci]

2024-05-07 Thread Kamailio Dev via sr-dev
Module: kamailio Branch: 5.8 Commit: 191aec6ef644024741c23776c35fc712aa82a6b5 URL: https://github.com/kamailio/kamailio/commit/191aec6ef644024741c23776c35fc712aa82a6b5 Author: Kamailio Dev Committer: Kamailio Dev Date: 2024-05-07T21:16:19+02:00 modules: readme files regenerated - modules ... [

[sr-dev] git:5.7:a49a4aef: modules: readme files regenerated - modules ... [skip ci]

2024-05-07 Thread Kamailio Dev via sr-dev
Module: kamailio Branch: 5.7 Commit: a49a4aefa7c72e113d354f0e71add874fb191ec9 URL: https://github.com/kamailio/kamailio/commit/a49a4aefa7c72e113d354f0e71add874fb191ec9 Author: Kamailio Dev Committer: Kamailio Dev Date: 2024-05-07T21:16:27+02:00 modules: readme files regenerated - modules ... [

[sr-dev] Re: [kamailio/kamailio] Memory usage increases everytime tls.reload is executed (Issue #3823)

2024-05-07 Thread sergey-safarov via sr-dev
Could you compare it with a graph for our server for last 60 days and about 25 WebRTC clients? ![image](https://github.com/kamailio/kamailio/assets/2562241/b11398b8-9701-46e1-a4d9-e8ef188a2286) and ![image](https://github.com/kamailio/kamailio/assets/2562241/3d1e7688-d6ff-425c-b1b5-5c736159a66f)

[sr-dev] Re: [kamailio/kamailio] Possible Mem leak in Core (Issue #3841)

2024-05-07 Thread paresh-panda via sr-dev
The above was not an issue , as these are the static pointers which allocated once per the receiver process. On further analysis found that issue is with smsops and I will raise specific issue for that. Thank you! -- Reply to this email directly or view it on GitHub: https://github.com/kamail

[sr-dev] Re: [kamailio/kamailio] Possible Mem leak in Core (Issue #3841)

2024-05-07 Thread paresh-panda via sr-dev
Closed #3841 as completed. -- Reply to this email directly or view it on GitHub: https://github.com/kamailio/kamailio/issues/3841#event-12736086253 You are receiving this because you are subscribed to this thread. Message ID: ___ Kamailio (SER) - Devel

[sr-dev] git:master:1535031a: etc/kamailio.cfg: remove executable flag

2024-05-07 Thread Daniel-Constantin Mierla via sr-dev
Module: kamailio Branch: master Commit: 1535031a6c992c23270050793b23d290a631b684 URL: https://github.com/kamailio/kamailio/commit/1535031a6c992c23270050793b23d290a631b684 Author: Daniel-Constantin Mierla Committer: Daniel-Constantin Mierla Date: 2024-05-08T06:59:23+02:00 etc/kamailio.cfg: remo

[sr-dev] git:5.8:ba7a4901: etc/kamailio.cfg: remove executable flag

2024-05-07 Thread Daniel-Constantin Mierla via sr-dev
Module: kamailio Branch: 5.8 Commit: ba7a4901268493f5432d5efd59d6dbd7b422742f URL: https://github.com/kamailio/kamailio/commit/ba7a4901268493f5432d5efd59d6dbd7b422742f Author: Daniel-Constantin Mierla Committer: Daniel-Constantin Mierla Date: 2024-05-08T06:59:31+02:00 etc/kamailio.cfg: remove

[sr-dev] git:5.7:d88542f2: etc/kamailio.cfg: remove executable flag

2024-05-07 Thread Daniel-Constantin Mierla via sr-dev
Module: kamailio Branch: 5.7 Commit: d88542f235af01d63c555673bebbc0c64ea825e2 URL: https://github.com/kamailio/kamailio/commit/d88542f235af01d63c555673bebbc0c64ea825e2 Author: Daniel-Constantin Mierla Committer: Daniel-Constantin Mierla Date: 2024-05-08T06:59:08+02:00 etc/kamailio.cfg: remove

[sr-dev] Re: [kamailio/kamailio] Memory usage increases everytime tls.reload is executed (Issue #3823)

2024-05-07 Thread Sebastian Denz via sr-dev
The problem actually occured after we added the CRL some weeks ago.. without CRL there was no such behaviour. And of course there are a lot options to mitigate the issue respectively decrease the propability by doing less reloads by decreasing the cycle and/or check if there was a change at the

[sr-dev] Re: Releasing v5.7.5

2024-05-07 Thread Daniel-Constantin Mierla via sr-dev
Hello, short reminder that today is planned to release v5.7.5. As usual, until the announcement is out, any commit that should go to branch 5.7 has to be announced to sr-dev mailing list and wait for ack before pushing to git repository in order to avoid conflicts with release building process. C

[sr-dev] git:5.7:aab0f988: pkg: version set to 5.7.5 for rpms and alpine specs

2024-05-07 Thread Daniel-Constantin Mierla via sr-dev
Module: kamailio Branch: 5.7 Commit: aab0f988b6c69266b54dc2d92c6c9f739ef6805e URL: https://github.com/kamailio/kamailio/commit/aab0f988b6c69266b54dc2d92c6c9f739ef6805e Author: Daniel-Constantin Mierla Committer: Daniel-Constantin Mierla Date: 2024-05-08T07:56:41+02:00 pkg: version set to 5.7.5

[sr-dev] git:5.7:7590ff14: pkg: deb specs updated for v5.7.4

2024-05-07 Thread Daniel-Constantin Mierla via sr-dev
Module: kamailio Branch: 5.7 Commit: 7590ff14e0c9bcab17a298f806f4da8a564c83a8 URL: https://github.com/kamailio/kamailio/commit/7590ff14e0c9bcab17a298f806f4da8a564c83a8 Author: Daniel-Constantin Mierla Committer: Daniel-Constantin Mierla Date: 2024-05-08T07:57:26+02:00 pkg: deb specs updated fo

[sr-dev] git:5.7:b0caec01: Makefile.defs: version set to 5.7.5

2024-05-07 Thread Daniel-Constantin Mierla via sr-dev
Module: kamailio Branch: 5.7 Commit: b0caec0143187f487b24d37376e93b05340db1ad URL: https://github.com/kamailio/kamailio/commit/b0caec0143187f487b24d37376e93b05340db1ad Author: Daniel-Constantin Mierla Committer: Daniel-Constantin Mierla Date: 2024-05-08T07:58:49+02:00 Makefile.defs: version se