silentindark
silentindark
It crashes immediately when I try to register SIPCon1 on asterisk
@seanbright I just have pushed a PR https://github.com/pjsip/pjproject/pull/4695 for this.
@gtjoseph Two colons in the commit message: Resolves:: -> Resolves: has been fixed. I will try to find out a cause of unit test failures and an ASSERT in test_res_rtp.c.
> The os.h patch should be submitted to the upstream project The os.h patch merged to the upstream project
>Try running test execute category /res/res_rtp/ locally. I have tried it locally. Got a Backtraces From file /tmp/core-asterisk-2025-12-03T11-15-06Z-thread1.txt Looks like that ast_rtp_instance_get_stats is trying to operate on a memory address...
At compile time got In file included from /usr/src/asterisk-20.17.0/third-party/pjproject/source/pjlib/include/pj/assert.h:51, from /usr/src/asterisk-20.17.0/third-party/pjproject/source/pjsip/include/pjsip/sip_uri.h:29, from /usr/src/asterisk-20.17.0/third-party/pjproject/source/pjsip/include/pjsip.h:27, from res_hep_pjsip.c:37: /usr/src/asterisk-20.17.0/third-party/pjproject/source/pjlib/include/pj/os.h:267:1: warning: function declaration isn’t a prototype [-Wstrict-prototypes] 267 | PJ_DECL(pj_status_t) pj_thread_unregister(); | ^~~~~~~ Looks...
These warnings can be fixed by adding this change to pj/os.h: `--- a/pjlib/include/pj/os.h.orig 2025-11-26 02:00:05.000000000 +0200 +++ b/pjlib/include/pj/os.h 2025-12-02 11:54:53.132903235 +0200 @@ -264,7 +264,7 @@ * * @return PJ_SUCCESS on...