[sr-dev] Re: [kamailio/kamailio] geoip2: Reload database before accessing it (PR #3867)

2024-06-03 Thread Daniel-Constantin Mierla via sr-dev
Merged #3867 into master. -- Reply to this email directly or view it on GitHub: https://github.com/kamailio/kamailio/pull/3867#event-13017677940 You are receiving this because you are subscribed to this thread. Message ID: ___ Kamailio (SER) - Developm

[sr-dev] Re: [kamailio/kamailio] geoip2: Reload database before accessing it (PR #3867)

2024-06-03 Thread Daniel-Constantin Mierla via sr-dev
Thanks! -- Reply to this email directly or view it on GitHub: https://github.com/kamailio/kamailio/pull/3867#issuecomment-2144688322 You are receiving this because you are subscribed to this thread. Message ID: ___ Kamailio (SER) - Development Mailing

[sr-dev] Re: [kamailio/kamailio] Crash on shutdown after geoip2.reload (Issue #3861)

2024-06-03 Thread Daniel-Constantin Mierla via sr-dev
Thanks, to be backported, closing! -- Reply to this email directly or view it on GitHub: https://github.com/kamailio/kamailio/issues/3861#issuecomment-2144689781 You are receiving this because you are subscribed to this thread. Message ID: ___ Kamailio

[sr-dev] Re: [kamailio/kamailio] Crash on shutdown after geoip2.reload (Issue #3861)

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

[sr-dev] git:master:51dcab01: geoip2: Reload database before accessing it

2024-06-03 Thread Daniel-Constantin Mierla via sr-dev
Module: kamailio Branch: master Commit: 51dcab019a42e5b1f3b81247ca71ffcaf46180de URL: https://github.com/kamailio/kamailio/commit/51dcab019a42e5b1f3b81247ca71ffcaf46180de Author: Bastian Triller Committer: Daniel-Constantin Mierla Date: 2024-06-03T11:12:04+02:00 geoip2: Reload database before

[sr-dev] Re: [kamailio/kamailio] core/resolve: Check dns_cache_init and choose appropriate functions (PR #3858)

2024-06-03 Thread Xenofon Karamanos via sr-dev
@xkaraman commented on this pull request. > @@ -1623,7 +1623,12 @@ struct hostent *no_naptr_srv_sip_resolvehost( srv_name.s = tmp_srv; srv_name.len = strlen(tmp_srv); #ifdef USE_DNS_CACHE - he = dns_srv_get_he(&srv_name, port

[sr-dev] Re: [kamailio/kamailio] core/resolve: Check dns_cache_init and choose appropriate functions (PR #3858)

2024-06-03 Thread Xenofon Karamanos via sr-dev
@xkaraman pushed 1 commit. ce47096d86bdf9379091d0a48676763d9b249a83 core/resolve: Check dns_cache_init and choose appropriate functions -- View it on GitHub: https://github.com/kamailio/kamailio/pull/3858/files/1babeb1941b8b068144b4ef988c0ad31e813e68f..ce47096d86bdf9379091d0a48676763d9b249a83

[sr-dev] Re: [kamailio/kamailio] core/resolve: Check dns_cache_init and choose appropriate functions (PR #3858)

2024-06-03 Thread Xenofon Karamanos via sr-dev
@xkaraman commented on this pull request. > @@ -1833,6 +1847,23 @@ ip_addr_t *str2ip(str *st) return ipb; } +struct hostent *__resolvehost(char *name) +{ + if(dns_cache_init) { + return dns_resolvehost(name); + } else { + return _resolvehost(nam

[sr-dev] Re: [kamailio/kamailio] core/resolve: Check dns_cache_init and choose appropriate functions (PR #3858)

2024-06-03 Thread Xenofon Karamanos via sr-dev
@xkaraman pushed 1 commit. 0275d334c5b25548e92c40bb981540e2ec61d986 core/resolve: Check dns_cache_init and choose appropriate functions -- View it on GitHub: https://github.com/kamailio/kamailio/pull/3858/files/ce47096d86bdf9379091d0a48676763d9b249a83..0275d334c5b25548e92c40bb981540e2ec61d986

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

2024-06-03 Thread Daniel-Constantin Mierla via sr-dev
The logs say that a core file was generated: ``` May 28 10:08:37 KAM02 kamailio[45254]: 0(45254) ALERT: [main.c:787]: handle_sigs(): core was generated ``` Grab the backtrace with gdb and post it here. -- Reply to this email directly or view it on GitHub: https://github.com/kamailio/kamailio/

[sr-dev] Re: [kamailio/kamailio] fixed handle_ruri_alias_mode(1) cannot proper handle multi alias (PR #3863)

2024-06-03 Thread Xenofon Karamanos via sr-dev
@miconda @henningw Indeed the patch seems to resolve the problem. The issue seems to be happening due to the line here. https://github.com/kamailio/kamailio/blob/51dcab019a42e5b1f3b81247ca71ffcaf46180de/src/modules/nathelper/nathelper.c#L1180-L1184 We use the `rest=start;` to search for the par

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

2024-06-03 Thread Daniel-Constantin Mierla via sr-dev
Can you give an example value of what is `very long time`? The interval of keepalive is defined by a new param: - https://www.kamailio.org/docs/modules/stable/modules/usrloc.html#usrloc.p.ka_interval -- Reply to this email directly or view it on GitHub: https://github.com/kamailio/kamailio/

[sr-dev] Re: [kamailio/kamailio] ims_registrar_pcscf: during de-registration procedure, clean-up is not happening if contact has * value (Issue #3848)

2024-06-03 Thread Daniel-Constantin Mierla via sr-dev
I understand that this is about the ims modules, not about registrar/usrloc modules for the classic SIP. The IMS modules are not full implementation of the specs, and given that not many are contributing to them, likely this is a missing feature. One should write the code for it and make a pull

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

2024-06-03 Thread Daniel-Constantin Mierla via sr-dev
Thanks for testing and reporting back. Probably it's time do plan the 5.8.2, max 1-2 weeks. Closing this one. -- Reply to this email directly or view it on GitHub: https://github.com/kamailio/kamailio/issues/3835#issuecomment-2145498070 You are receiving this because you are subscribed to this

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

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

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

2024-06-03 Thread Luke Escudé via sr-dev
Even with ka_interval set to 40 seconds, it can take multiple minutes, or sometimes hours, for usrloc to begin sending OPTIONS packets. -- Reply to this email directly or view it on GitHub: https://github.com/kamailio/kamailio/issues/3844#issuecomment-2145508018 You are receiving this because yo

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

2024-06-03 Thread itpanda2024 via sr-dev
I use command : " gdb /usr/sbin/kamailio /core" i don't know exactly [root@test ~]# gdb /usr/sbin/kamailio /core GNU gdb (GDB) Red Hat Enterprise Linux 10.2-13.el9 Copyright (C) 2021 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later T

[sr-dev] git:master:ad9bef09: uac: add reload_delta parameter

2024-06-03 Thread Daniel-Constantin Mierla via sr-dev
Module: kamailio Branch: master Commit: ad9bef09935d47729611cf5532300b634f99fec8 URL: https://github.com/kamailio/kamailio/commit/ad9bef09935d47729611cf5532300b634f99fec8 Author: Tyler Moore Committer: Daniel-Constantin Mierla Date: 2024-06-03T21:08:04+02:00 uac: add reload_delta parameter -

[sr-dev] Re: [kamailio/kamailio] uac: add reload_delta parameter (PR #3829)

2024-06-03 Thread Daniel-Constantin Mierla via sr-dev
Merged #3829 into master. -- Reply to this email directly or view it on GitHub: https://github.com/kamailio/kamailio/pull/3829#event-13025729252 You are receiving this because you are subscribed to this thread. Message ID: ___ Kamailio (SER) - Developm

[sr-dev] git:master:f2a1d87d: modules: readme files regenerated - uac ... [skip ci]

2024-06-03 Thread Kamailio Dev via sr-dev
Module: kamailio Branch: master Commit: f2a1d87d3122c4e7075f6dae31ca48b2ce36869f URL: https://github.com/kamailio/kamailio/commit/f2a1d87d3122c4e7075f6dae31ca48b2ce36869f Author: Kamailio Dev Committer: Kamailio Dev Date: 2024-06-03T21:16:10+02:00 modules: readme files regenerated - uac ... [s

[sr-dev] git:master:48317d31: rtpengine: use extract_body with read_sdp_pv

2024-06-03 Thread Richard Fuchs via sr-dev
Module: kamailio Branch: master Commit: 48317d3180e8ec67d24862ebcbbb80ab887ff5bd URL: https://github.com/kamailio/kamailio/commit/48317d3180e8ec67d24862ebcbbb80ab887ff5bd Author: Richard Fuchs Committer: Richard Fuchs Date: 2024-06-03T15:49:12-04:00 rtpengine: use extract_body with read_sdp_pv

[sr-dev] Re: [kamailio/kamailio] rtpengine: multipart content dropped when used read_sdp_pv (Issue #3854)

2024-06-03 Thread Richard Fuchs via sr-dev
Closed #3854 as completed via 48317d3180e8ec67d24862ebcbbb80ab887ff5bd. -- Reply to this email directly or view it on GitHub: https://github.com/kamailio/kamailio/issues/3854#event-13026141618 You are receiving this because you are subscribed to this thread. Message ID: _

[sr-dev] git:master:34d3e318: uac: reformat exported structures

2024-06-03 Thread Daniel-Constantin Mierla via sr-dev
Module: kamailio Branch: master Commit: 34d3e318aeb3ca3f3e6e48681eff517758fb0703 URL: https://github.com/kamailio/kamailio/commit/34d3e318aeb3ca3f3e6e48681eff517758fb0703 Author: Daniel-Constantin Mierla Committer: Daniel-Constantin Mierla Date: 2024-06-03T22:55:34+02:00 uac: reformat exported

[sr-dev] git:master:b508ef25: iims_registrar_scscf: include header for common c functions

2024-06-03 Thread Daniel-Constantin Mierla via sr-dev
Module: kamailio Branch: master Commit: b508ef253cf996a5efd8bf13ded0c804f3557ada URL: https://github.com/kamailio/kamailio/commit/b508ef253cf996a5efd8bf13ded0c804f3557ada Author: Daniel-Constantin Mierla Committer: Daniel-Constantin Mierla Date: 2024-06-03T22:09:55+02:00 iims_registrar_scscf:

[sr-dev] RPM packaging EL8 / EL9 : bump python to 3.12 ?

2024-06-03 Thread Richard Chan via sr-dev
@Sergey-safarov Both EL distros 8.10 and 9.4 have been released with Python 3.12. Can you consider updating bumping the Python version to 3.12 for the upcoming 5.8.2 release. Thank you. Richard Chan ___ Kamailio (SER) - Development Mailing List To uns