[sr-dev] Re: [kamailio/kamailio] sqlops: new connect mode to limit the amount of connections (PR #4027)

2024-11-19 Thread Julien Chavanton via sr-dev
@henningw just fixed the formatting ... >From my experience with sqlops and postgres (not sure if all the db drivers >are working the exact same way). Kamailio is creating one connection per process (except for PROC_INIT, PROC_MAIN and PROC_TCP_MAIN) The connections remained idle but at not exp

[sr-dev] git:master:67497692: dispatcher: updated boundary checks for uint32_t ocmin and ocmax

2024-11-19 Thread Daniel-Constantin Mierla via sr-dev
Module: kamailio Branch: master Commit: 67497692ff4a74a5cb3dc774184252243ea5c47b URL: https://github.com/kamailio/kamailio/commit/67497692ff4a74a5cb3dc774184252243ea5c47b Author: Daniel-Constantin Mierla Committer: Daniel-Constantin Mierla Date: 2024-11-19T11:55:34+01:00 dispatcher: updated bo

[sr-dev] git:master:0d68c816: textops: free substitution expression for subst_v()

2024-11-19 Thread Daniel-Constantin Mierla via sr-dev
Module: kamailio Branch: master Commit: 0d68c816bd72be78fef827ee923897f90c521570 URL: https://github.com/kamailio/kamailio/commit/0d68c816bd72be78fef827ee923897f90c521570 Author: Daniel-Constantin Mierla Committer: Daniel-Constantin Mierla Date: 2024-11-19T12:20:21+01:00 textops: free substitu

[sr-dev] Re: [kamailio/kamailio] sqlops: new connect mode to limit the amount of connections (PR #4027)

2024-11-19 Thread Julien Chavanton via sr-dev
@jchavanton pushed 1 commit. 31f9410fbd06183f8a2e34eeacd54973c0a8fe4c sqlops: new connect mode to limit the amount of connections -- View it on GitHub: https://github.com/kamailio/kamailio/pull/4027/files/9b92999f112d0506b65fe9ff4f48a72866b6afe3..31f9410fbd06183f8a2e34eeacd54973c0a8fe4c You ar

[sr-dev] [kamailio/kamailio] db_sqlite: Add busy timeout param to improve concurrency. (PR #4028)

2024-11-19 Thread Andreas Granig via sr-dev
It's needed specifically when setting WAL, because on module loading, each child creates its own DB connection and sets the WAL (or other options you might set), and it all happens roughly at the same time. Without setting the busy-timeout, starting of kamailio will fail due to locking issues wi

[sr-dev] [kamailio/kamailio] db_sqlite: Add busy timeout param to improve concurrency (PR #4029)

2024-11-19 Thread Andreas Granig via sr-dev
It's needed specifically when setting WAL, because on module loading, each child creates its own DB connection and sets the WAL (or other options you might set), and it all happens roughly at the same time. Without setting the busy-timeout, starting of kamailio will fail due to locking issues w

[sr-dev] Re: [kamailio/kamailio] ims_isc: bugfix: firstflag incorrect in isc_match_filter (PR #4018)

2024-11-19 Thread Dragos Vingarzan via sr-dev
@vingarzan commented on this pull request. > @@ -244,10 +244,17 @@ int isc_match_filter(struct sip_msg *msg, char *str1, > udomain_t *d) int free_s = 0; //the callback from the Cx interface in case of unreg terminating initial message is a FAILURE_ROUTE. Hence we need an addl

[sr-dev] Re: [kamailio/kamailio] sqlops: new connect mode to limit the amount of connections (PR #4027)

2024-11-19 Thread Julien Chavanton via sr-dev
@jchavanton pushed 1 commit. 49240fde74415ac582ae764ac4975005b0dafdb6 sqlops: new connect mode to limit the amount of connections -- View it on GitHub: https://github.com/kamailio/kamailio/pull/4027/files/31f9410fbd06183f8a2e34eeacd54973c0a8fe4c..49240fde74415ac582ae764ac4975005b0dafdb6 You ar

[sr-dev] Re: [kamailio/kamailio] cdp: fixed issues discovered during static code analysis (PR #4030)

2024-11-19 Thread Dragos Vingarzan via sr-dev
@vingarzan commented on this pull request. > @@ -236,7 +236,7 @@ int diameter_peer_start(int blocking) int seed; peer *p; - seed = random(); + seed = kam_rand(); Do we need though cryptographically secure seeding of the random though? I looked now in core/pt.c and

[sr-dev] Re: [kamailio/kamailio] topos: add enable_register_publish (PR #3766)

2024-11-19 Thread Andreas Granig via sr-dev
Trying to get this tested based on latest master. -- Reply to this email directly or view it on GitHub: https://github.com/kamailio/kamailio/pull/3766#issuecomment-2485791103 You are receiving this because you are subscribed to this thread. Message ID: ___

[sr-dev] Re: [kamailio/kamailio] topos: add enable_register_publish (PR #3766)

2024-11-19 Thread Andreas Granig via sr-dev
@agranig pushed 1 commit. fa53a6da06a8210e7233fccc1f3524472e429248 Merge branch 'master' into enable_register_publish-parameter -- View it on GitHub: https://github.com/kamailio/kamailio/pull/3766/files/86402aee2f1730922000902e15a095b54c5a6b4d..fa53a6da06a8210e7233fccc1f3524472e429248 You are

[sr-dev] Re: [kamailio/kamailio] topos: add enable_register_publish (PR #3766)

2024-11-19 Thread Andreas Granig via sr-dev
@agranig pushed 1 commit. bc1da947930feba1ca3a3fc95a3bfd10e0f37ab0 topos: fix code formatting -- View it on GitHub: https://github.com/kamailio/kamailio/pull/3766/files/fa53a6da06a8210e7233fccc1f3524472e429248..bc1da947930feba1ca3a3fc95a3bfd10e0f37ab0 You are receiving this because you are subs

[sr-dev] git:master:91abfdf6: lib/srdb1: Allow '/' in database URL passwords

2024-11-19 Thread Daniel-Constantin Mierla via sr-dev
Module: kamailio Branch: master Commit: 91abfdf6ebf942cbb0234be36812a9513f92f96b URL: https://github.com/kamailio/kamailio/commit/91abfdf6ebf942cbb0234be36812a9513f92f96b Author: Kent Committer: Daniel-Constantin Mierla Date: 2024-11-19T16:00:45+01:00 lib/srdb1: Allow '/' in database URL passw

[sr-dev] Re: [kamailio/kamailio] core: add other 4xx reply error count stats (PR #4014)

2024-11-19 Thread Daniel-Constantin Mierla via sr-dev
Merged #4014 into master. -- Reply to this email directly or view it on GitHub: https://github.com/kamailio/kamailio/pull/4014#event-15350949461 You are receiving this because you are subscribed to this thread. Message ID: ___ Kamailio - Development Ma

[sr-dev] git:master:21f12f10: core: add other 4xx reply error count stats

2024-11-19 Thread Daniel-Constantin Mierla via sr-dev
Module: kamailio Branch: master Commit: 21f12f108bd04b95a51704a570bc8215b26bf71b URL: https://github.com/kamailio/kamailio/commit/21f12f108bd04b95a51704a570bc8215b26bf71b Author: AsedMorteza Committer: Daniel-Constantin Mierla Date: 2024-11-19T16:01:49+01:00 core: add other 4xx reply error cou

[sr-dev] git:master:43f4c0f9: rtpengine: update doc

2024-11-19 Thread Daniel-Constantin Mierla via sr-dev
Module: kamailio Branch: master Commit: 43f4c0f9455d57f5b4e4963358fe214c85532bc6 URL: https://github.com/kamailio/kamailio/commit/43f4c0f9455d57f5b4e4963358fe214c85532bc6 Author: Ihor Olkhovskyi Committer: Daniel-Constantin Mierla Date: 2024-11-19T16:02:44+01:00 rtpengine: update doc - explic

[sr-dev] Re: [kamailio/kamailio] rtpengine: update doc (PR #3998)

2024-11-19 Thread Daniel-Constantin Mierla via sr-dev
Merged #3998 into master. -- Reply to this email directly or view it on GitHub: https://github.com/kamailio/kamailio/pull/3998#event-15350963733 You are receiving this because you are subscribed to this thread. Message ID: ___ Kamailio - Development Ma

[sr-dev] Re: [kamailio/kamailio] lib/srdb1: Allow '/' in database URL passwords (PR #4017)

2024-11-19 Thread Daniel-Constantin Mierla via sr-dev
Thanks, merging it. -- Reply to this email directly or view it on GitHub: https://github.com/kamailio/kamailio/pull/4017#issuecomment-2485957037 You are receiving this because you are subscribed to this thread. Message ID: ___ Kamailio - Development Ma

[sr-dev] Re: [kamailio/kamailio] cdp: fixed issues discovered during static code analysis (PR #4030)

2024-11-19 Thread Henning Westerholt via sr-dev
@henningw commented on this pull request. > @@ -236,7 +236,7 @@ int diameter_peer_start(int blocking) int seed; peer *p; - seed = random(); + seed = kam_rand(); It depends what the child processes actually use then in their code. The code in pt.c seeds all three a

[sr-dev] [kamailio/kamailio] cdp: fixes for various issues found with Coverity (PR #4030)

2024-11-19 Thread Dragos Vingarzan via sr-dev