[sr-dev] Re: [kamailio/kamailio] Add timer to ping rtpengine (PR #4016)

2024-11-07 Thread Stefan Mititelu via sr-dev
@stefan-mititelu-idt commented on this pull request. > @@ -2176,6 +2184,11 @@ static int mod_init(void) } } + /* Enable ping timer if interval is positive */ + if(rtpengine_ping_interval > 0) { + register_timer(rtpengine_ping_check_timer, 0, r

[sr-dev] Re: [kamailio/kamailio] Add timer to ping rtpengine (PR #4016)

2024-11-07 Thread Stefan Mititelu via sr-dev
@stefan-mititelu-idt commented on this pull request. > @@ -3549,6 +3606,10 @@ static int rtpp_test(struct rtpp_node *node, int > isdisabled, int force) return 1; } if(force == 0) { + /* If ping_interval is set, the timer will ping and test +

[sr-dev] Re: [kamailio/kamailio] Kamailio crash on http_async_client module callback invocation (Issue #4019)

2024-11-07 Thread Henning Westerholt via sr-dev
Are you on OpenSSL 3.x library on this distribution and are using https? Then you should upgrade at least to the latest bugfix release of 5.7 branch, e.g. 5.7.6. There have been important bugfixes for this module. Even if this is not the case, an upgrade is probably a good idea. -- Reply to t

[sr-dev] Re: [kamailio/kamailio] Add timer to ping rtpengine (PR #4016)

2024-11-07 Thread Xenofon Karamanos via sr-dev
@xkaraman commented on this pull request. > @@ -2176,6 +2184,11 @@ static int mod_init(void) } } + /* Enable ping timer if interval is positive */ + if(rtpengine_ping_interval > 0) { + register_timer(rtpengine_ping_check_timer, 0, rtpengine_pi

[sr-dev] Re: [kamailio/kamailio] Kamailio crash on http_async_client module callback invocation (Issue #4019)

2024-11-07 Thread Ivanuschak Nikolay via sr-dev
The same crash happens on kamailio 5.8.2 ``` [centos@esrp-0a ~]$ cat /etc/centos-release CentOS Stream release 8 [centos@esrp-0a ~]$ uname -a Linux esrp-0a.fl.nga911.com 4.18.0-536.el8.aarch64 #1 SMP Thu Jan 18 15:21:54 UTC 2024 aarch64 aarch64 aarch64 GNU/Linux [centos@esrp-0a coredump]# sudo

[sr-dev] [kamailio/kamailio] http_async_client: fixed crash on curl callback (PR #4020)

2024-11-07 Thread Ivanuschak Nikolay via sr-dev