[sr-dev] Re: [kamailio/kamailio] Kamailio became unresponsive during runtime (#2380)

2024-06-26 Thread Mojtaba Esfandiari.S via sr-dev
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.

[sr-dev] Re: [kamailio/kamailio] rtpengine: export api (PR #3948)

2024-08-17 Thread Mojtaba Esfandiari.S via sr-dev
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:

[sr-dev] Re: [kamailio/kamailio] rtpengine: export api (PR #3948)

2024-08-18 Thread Mojtaba Esfandiari.S via sr-dev
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

[sr-dev] Re: [kamailio/kamailio] rtpengine: export api (PR #3948)

2024-08-19 Thread Mojtaba Esfandiari.S via sr-dev
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

[sr-dev] Re: [kamailio/kamailio] rtpengine: export api (PR #3948)

2024-08-19 Thread Mojtaba Esfandiari.S via sr-dev
> > 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