THIS IS AN AUTOMATED MESSAGE, DO NOT REPLY.
The following task has a new comment added:
FS#122 - Kamailio 3.1.3 crash
User who did this - Daniel-Constantin Mierla (miconda)
----------
Try to call dlg_get(...) first in the event route:
http://kamailio.org/docs/modules/stable/modules_k/dialog.html#id2966190
----------
More information can be found at the following URL:
http://sip-router.org/tracker/index.php?do=details&task_id=122#comment194
You are receiving this message because you have requested it from the Flyspray bugtracking system. If you did not expect this message or don't want to receive mails in future, you can change your notification settings at the URL shown above.
THIS IS AN AUTOMATED MESSAGE, DO NOT REPLY.
The following task has a new comment added:
FS#122 - Kamailio 3.1.3 crash
User who did this - Jasmin Schnatterbeck (jasmin)
----------
thanks for your support!
I just changed mi_datagram.c and tested again.
Kamailio does not crash anymore :-)
But unfortunately the $dlg variables are still not set...
Is there any option to make some changes in the dialog module that it exports the necessary elements?
Jasmin
----------
More information can be found at the following URL:
http://sip-router.org/tracker/index.php?do=details&task_id=122#comment193
You are receiving this message because you have requested it from the Flyspray bugtracking system. If you did not expect this message or don't want to receive mails in future, you can change your notification settings at the URL shown above.
THIS IS AN AUTOMATED MESSAGE, DO NOT REPLY.
The following task has a new comment added:
FS#122 - Kamailio 3.1.3 crash
User who did this - marius zbihlei (marius.zbihlei)
----------
it seems not, you can't use exec module from there.( This function can be used from REQUEST_ROUTE, FAILURE_ROUTE. ). Also I think the dlg problem is related. I will start another bug with the generic bug description.
Marius
----------
More information can be found at the following URL:
http://sip-router.org/tracker/index.php?do=details&task_id=122#comment192
You are receiving this message because you have requested it from the Flyspray bugtracking system. If you did not expect this message or don't want to receive mails in future, you can change your notification settings at the URL shown above.
THIS IS AN AUTOMATED MESSAGE, DO NOT REPLY.
The following task has a new comment added:
FS#122 - Kamailio 3.1.3 crash
User who did this - Daniel-Constantin Mierla (miconda)
----------
The issue here is that the mi_* modules create their own extra processes which do not call child_init functions from other modules unless those modules export a MI child init function through an exported MI command. It is not the case to sqlops.
you can try to change in:
modules_k/mi_datagram/mi_datagram.c
line 280:
pid=fork_process(PROC_NOCHLDINIT, "MI DATAGRAM", 1);
to:
pid=fork_process(PROC_RPC, "MI DATAGRAM", 1);
It might have side effects, though. When I have some time, if nobody else does it meanwhile, I will try to solve this issue with extra MI processes and the modules that don't export MI commands.
----------
More information can be found at the following URL:
http://sip-router.org/tracker/index.php?do=details&task_id=122#comment191
You are receiving this message because you have requested it from the Flyspray bugtracking system. If you did not expect this message or don't want to receive mails in future, you can change your notification settings at the URL shown above.