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

2024-07-04 Thread Daniel-Constantin Mierla via sr-dev
I tried to reproduce, but keepalives are sent immediately to UDP contacts. Can you try with Kamailio development version and see if all ok? -- Reply to this email directly or view it on GitHub: https://github.com/kamailio/kamailio/issues/3844#issuecomment-2208397779 You are receiving this becaus

[sr-dev] Re: [kamailio/kamailio] Kamailio core dump v5.6 with cncxx module (Issue #3859)

2024-07-04 Thread Daniel-Constantin Mierla via sr-dev
You should check that the final pulse variable does not have 0 value. For further discussions, use sr-users mailing list. I am closing this one, commit being backported. -- Reply to this email directly or view it on GitHub: https://github.com/kamailio/kamailio/issues/3859#issuecomment-220840402

[sr-dev] Re: [kamailio/kamailio] Kamailio core dump v5.6 with cncxx module (Issue #3859)

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

[sr-dev] Re: [kamailio/kamailio] db_redis: compile issues with TLS + redis-cluster (Issue #3893)

2024-07-04 Thread Daniel-Constantin Mierla via sr-dev
You have to compile the module with `Q=0` to see if the `-DWITH_SSL` compile flag is provided to the compiler: ``` cd src/modules/db_redis make clean make Q=0 ``` The output during compilation should be more verbose, you can paste it here if you want to be analyzed. -- Reply to this email dir

[sr-dev] Re: [kamailio/kamailio] Kamailio core dump v5.6 with cncxx module (Issue #3859)

2024-07-04 Thread itpanda2024 via sr-dev
Thanks a lot of for your support . I check it again -- Reply to this email directly or view it on GitHub: https://github.com/kamailio/kamailio/issues/3859#issuecomment-2208426081 You are receiving this because you are subscribed to this thread. Message ID: ___

[sr-dev] Re: [kamailio/kamailio] Kamailio crash with DMQ!? (Issue #3905)

2024-07-04 Thread Daniel-Constantin Mierla via sr-dev
Do you run some rpc commands to change values for global or module parameters? -- Reply to this email directly or view it on GitHub: https://github.com/kamailio/kamailio/issues/3905#issuecomment-2208437876 You are receiving this because you are subscribed to this thread. Message ID:

[sr-dev] Re: [kamailio/kamailio] sqlops: Don't truncated sql command when logging. (PR #3903)

2024-07-04 Thread Daniel-Constantin Mierla via sr-dev
It is not a bug, it was done on purpose to limit the size of logging message, because there can be rather long queries some time and can fill the logs or slow down. If you find 64 too short, you can eventually double it. Alternative you can add a modparam to set the max length to be printed. --

[sr-dev] Re: [kamailio/kamailio] core: add support for custom log function (PR #3902)

2024-07-04 Thread Daniel-Constantin Mierla via sr-dev
Any reason that: ``` ksr_logdata_t __kld = {0}; ``` I replaced with: ``` ksr_logdata_t __kld = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0}; ``` Also, `asprintf()` allocates memory, it is freed somewhere? Then, when this new mechanism is used and what is the benefit? Can you provide some examples? -- Re

[sr-dev] Re: [kamailio/kamailio] sqlops: Don't truncated sql command when logging. (PR #3903)

2024-07-04 Thread Xenofon Karamanos via sr-dev
Hmm, ok. Seems fair but it's not documented anywhere and it can lead to misunderstanding that the query itself is truncated and producing the error. Maybe the modparam limit is the best way to go but is it worth it to be introduced just for this logging? -- Reply to this email directly or view

[sr-dev] Re: [kamailio/kamailio] usrloc: refactor some db queries using global usrloc_columns variable (PR #3888)

2024-07-04 Thread Lucian Balaceanu via sr-dev
Merged #3888 into master. -- Reply to this email directly or view it on GitHub: https://github.com/kamailio/kamailio/pull/3888#event-13392636291 You are receiving this because you are subscribed to this thread. Message ID: ___ Kamailio (SER) - Developm

[sr-dev] git:master:d923f7b2: usrloc: refactor some db queries using global usrloc_columns variable

2024-07-04 Thread Lucian Balaceanu via sr-dev
Module: kamailio Branch: master Commit: d923f7b2a3c2fb0df506f9a211065566f6da3747 URL: https://github.com/kamailio/kamailio/commit/d923f7b2a3c2fb0df506f9a211065566f6da3747 Author: Lucian Balaceanu Committer: Lucian Balaceanu Date: 2024-07-04T13:08:56+03:00 usrloc: refactor some db queries using

[sr-dev] Re: [kamailio/kamailio] usrloc: refactor some db queries using global usrloc_columns variable (PR #3888)

2024-07-04 Thread Lucian Balaceanu via sr-dev
Done. Thank you. -- Reply to this email directly or view it on GitHub: https://github.com/kamailio/kamailio/pull/3888#issuecomment-2208607234 You are receiving this because you are subscribed to this thread. Message ID: ___ Kamailio (SER) - Development

[sr-dev] Re: [kamailio/kamailio] core: add support for custom log function (PR #3902)

2024-07-04 Thread Nirv.Ana via sr-dev
@anmartan pushed 1 commit. 2ecd44410be96c441f137a0c02ffe47a51f20fd9 --amend -- View it on GitHub: https://github.com/kamailio/kamailio/pull/3902/files/52277d9b74e6ba2973ecaa0163a49be54bdd5454..2ecd44410be96c441f137a0c02ffe47a51f20fd9 You are receiving this because you are subscribed to this thr

[sr-dev] Re: [kamailio/kamailio] core: add support for custom log function (PR #3902)

2024-07-04 Thread Nirv.Ana via sr-dev
> Any reason that: > > ``` > ksr_logdata_t __kld = {0}; > ``` > > I replaced with: > > ``` > ksr_logdata_t __kld = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0}; > ``` I've reverted the change. > Also, `asprintf()` allocates memory, it is freed somewhere? It is now, at the end of the function. -- Reply

[sr-dev] Re: [kamailio/kamailio] core: add support for custom log function (PR #3902)

2024-07-04 Thread Ivan Ribakov via sr-dev
Hi @miconda , thanks for your feedback! Regarding `ksr_logdata_t`, most likely it got flagged by some static checker, but we've re-tested the original version and couldn't pin-point which exact check/rule triggered this. Regarding the `asprintf` - thanks for spotting the memory leak! We've ne

[sr-dev] Re: [kamailio/kamailio] Kamailio crash with DMQ!? (Issue #3905)

2024-07-04 Thread Benjamin via sr-dev
Hi, no we don't change anything. We use dmq to populate data to another node. -- Reply to this email directly or view it on GitHub: https://github.com/kamailio/kamailio/issues/3905#issuecomment-2208855439 You are receiving this because you are subscribed to this thread. Message ID:

[sr-dev] Re: Initial Support for CMake in Kamailio - Feedback Needed!

2024-07-04 Thread Xenofon Karamanos via sr-dev
Hello, Regarding modules: Currently only a subset of modules (those required for the default config to work without any extra defs) have CMakeLists.txt. I tried to follow the groups mechanism that was on Makefiles, see (modules/groups.cmake). We provide a list of names of modules and when CMak

[sr-dev] git:master:234f2ae0: tls: docs - note about tls_threads_mode core parameter

2024-07-04 Thread Daniel-Constantin Mierla via sr-dev
Module: kamailio Branch: master Commit: 234f2ae07a26af8948a176d10358a0b7039ad1a2 URL: https://github.com/kamailio/kamailio/commit/234f2ae07a26af8948a176d10358a0b7039ad1a2 Author: Daniel-Constantin Mierla Committer: Daniel-Constantin Mierla Date: 2024-07-04T16:20:47+02:00 tls: docs - note about

[sr-dev] git:master:91d6a131: etc/kamailio.cfg: set tls_threads_mode to 2

2024-07-04 Thread Daniel-Constantin Mierla via sr-dev
Module: kamailio Branch: master Commit: 91d6a131ab9d3e58a1560c6305af542c92c2b19f URL: https://github.com/kamailio/kamailio/commit/91d6a131ab9d3e58a1560c6305af542c92c2b19f Author: Daniel-Constantin Mierla Committer: Daniel-Constantin Mierla Date: 2024-07-04T16:23:39+02:00 etc/kamailio.cfg: set

[sr-dev] git:master:d13e103a: modules: readme files regenerated - tls ... [skip ci]

2024-07-04 Thread Kamailio Dev via sr-dev
Module: kamailio Branch: master Commit: d13e103ad047405e410d22046d354442b5a566f3 URL: https://github.com/kamailio/kamailio/commit/d13e103ad047405e410d22046d354442b5a566f3 Author: Kamailio Dev Committer: Kamailio Dev Date: 2024-07-04T16:31:11+02:00 modules: readme files regenerated - tls ... [s

[sr-dev] [kamailio/kamailio] [Warning] Aborted connection 203 to db: 'kamailio' user: 'kamailio' host: 'localhost' (Issue #3906)

2024-07-04 Thread Hieu Nguyen Minh via sr-dev
After a period of use, this warning occurs continuously and affects the performance of the system. Is this the bug of the system? Currently, I am using version 5.6 and MariaDB 10.5.25 + Galera Cluster. -- Reply to this email directly or view it on GitHub: https://github.com/kamailio/kamailio/is

[sr-dev] Re: [kamailio/kamailio] secsipid method to only validate signature without checking the rest of the header (Issue #3784)

2024-07-04 Thread github-actions[bot] via sr-dev
Closed #3784 as not planned. -- Reply to this email directly or view it on GitHub: https://github.com/kamailio/kamailio/issues/3784#event-13399805095 You are receiving this because you are subscribed to this thread. Message ID: ___ Kamailio (SER) - Dev

[sr-dev] Re: [kamailio/kamailio] [Warning] Aborted connection 203 to db: 'kamailio' user: 'kamailio' host: 'localhost' (Issue #3906)

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

[sr-dev] Re: [kamailio/kamailio] [Warning] Aborted connection 203 to db: 'kamailio' user: 'kamailio' host: 'localhost' (Issue #3906)

2024-07-04 Thread Daniel-Constantin Mierla via sr-dev
Follow the provided template to report an issue (provide all the data requested in the template in the appropriate format) or use sr-us...@lists.kamailio.org mailing list to figure out if it is something related to the configuration file. -- Reply to this email directly or view it on GitHub: ht