THIS IS AN AUTOMATED MESSAGE, DO NOT REPLY.
The following task has a new comment added:
FS#234 - kamailio crah [pass_fd.c:293]: ERROR: receive_fd: EOF on 46
User who did this - Daniel-Constantin Mierla (miconda)
----------
Can you post also the ngrep sip trace for such case, if you have it?
----------
More information can be found at the following URL:
http://sip-router.org/tracker/index.php?do=details&task_id=234#comment673
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#234 - kamailio crah [pass_fd.c:293]: ERROR: receive_fd: EOF on 46
User who did this - David Kovarik (kovik)
----------
Hi,
I have news in this cause,
Im compare all crashed calls and find that first INVITE comes from the UDP and second (reply to unautorizet) comes from the TCP and after it kamailio crash.
I hope that this help.
----------
More information can be found at the following URL:
http://sip-router.org/tracker/index.php?do=details&task_id=234#comment672
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#234 - kamailio crah [pass_fd.c:293]: ERROR: receive_fd: EOF on 46
User who did this - David Kovarik (kovik)
----------
Here it is for each process
----------
One or more files have been attached.
More information can be found at the following URL:
http://sip-router.org/tracker/index.php?do=details&task_id=234#comment671
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.
Module: sip-router
Branch: 3.3
Commit: bcbddc795b4ffad3bfaa1b77a51b6cfd73239ff1
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=bcbddc7…
Author: Peter Dunkley <peter.dunkley(a)crocodile-rcs.com>
Committer: Peter Dunkley <peter.dunkley(a)crocodile-rcs.com>
Date: Wed Jun 13 11:47:07 2012 +0100
modules_k/usrloc: Only run timer when timer_interval > 0
- This is useful on DB only multi-server systems when the database is
cleaned up outside of Kamailio.
- This is a re-instatement of something that worked before the
addition of GRUU.
(cherry picked from commit b13434ff7f8e8b1b88434e888c26a77874eceeb0)
---
modules_k/usrloc/ul_mod.c | 5 ++++-
1 files changed, 4 insertions(+), 1 deletions(-)
diff --git a/modules_k/usrloc/ul_mod.c b/modules_k/usrloc/ul_mod.c
index 7cbf257..a6e7ebd 100644
--- a/modules_k/usrloc/ul_mod.c
+++ b/modules_k/usrloc/ul_mod.c
@@ -315,7 +315,10 @@ static int mod_init(void)
/* Register cache timer */
if(ul_timer_procs<=0)
- register_timer(ul_core_timer, 0, timer_interval);
+ {
+ if (timer_interval > 0)
+ register_timer(ul_core_timer, 0, timer_interval);
+ }
else
register_sync_timers(ul_timer_procs);
Module: sip-router
Branch: master
Commit: b13434ff7f8e8b1b88434e888c26a77874eceeb0
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=b13434f…
Author: Peter Dunkley <peter.dunkley(a)crocodile-rcs.com>
Committer: Peter Dunkley <peter.dunkley(a)crocodile-rcs.com>
Date: Wed Jun 13 11:47:07 2012 +0100
modules_k/usrloc: Only run timer when timer_interval > 0
- This is useful on DB only multi-server systems when the database is
cleaned up outside of Kamailio.
- This is a re-instatement of something that worked before the
addition of GRUU.
---
modules_k/usrloc/ul_mod.c | 5 ++++-
1 files changed, 4 insertions(+), 1 deletions(-)
diff --git a/modules_k/usrloc/ul_mod.c b/modules_k/usrloc/ul_mod.c
index 7cbf257..a6e7ebd 100644
--- a/modules_k/usrloc/ul_mod.c
+++ b/modules_k/usrloc/ul_mod.c
@@ -315,7 +315,10 @@ static int mod_init(void)
/* Register cache timer */
if(ul_timer_procs<=0)
- register_timer(ul_core_timer, 0, timer_interval);
+ {
+ if (timer_interval > 0)
+ register_timer(ul_core_timer, 0, timer_interval);
+ }
else
register_sync_timers(ul_timer_procs);