I have the same issue in Kamailio 5.3.5, right now. Here is backtrace
information.
warning: exec file is newer than core file.
[New LWP 56381]
Core was generated by `/usr/local/sbin/kamailio -P /run/kamailio/kamailio.pid
-f /usr/local/etc/kamail'.
Program terminated with signal SIGABRT, Aborted.
As I understood from your message, you are going to implement a new module
called siprec for audio recording by rtpengine capabilities in Kamailio. Is it
right?
If yes, so your implementation will have a close dependency on rtpengine module.
--
Reply to this email directly or view it on GitHub:
In my opinion, consider the considerations of strong module dependencies in the
design.
For example, you have used the capabilities of another module in your code and
called it recently, while it might be better to design and implement this
capability in the new module itself.
Another important
I see, but SIPREC in Opensip is a general approach and uses the SIPREC
protocol. Is your approach the same?
--
Reply to this email directly or view it on GitHub:
https://github.com/kamailio/kamailio/pull/3948#issuecomment-2296006175
You are receiving this because you are subscribed to this threa
> > In my opinion, consider the considerations of strong module dependencies in
> > the design. For example, you have used the capabilities of another module
> > in your code and called it recently, while it might be better to design and
> > implement this capability in the new module itself. An