THIS IS AN AUTOMATED MESSAGE, DO NOT REPLY.
The following task has a new comment added:
FS#403 - Maximum 70 else if statements
User who did this - Daniel-Constantin Mierla (miconda)
----------
AFAIK, there is no such limit. Can you send the log messages with debug=3 in kamailio.cfg?
----------
More information can be found at the following URL:
http://sip-router.org/tracker/index.php?do=details&task_id=403#comment1329
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#402 - NATHELPER module to support RFC6598
User who did this - Daniel-Constantin Mierla (miconda)
----------
Isn't carrier grade nat using 100.64.0.0? You patch has 10.64.0.0
- http://en.wikipedia.org/wiki/Carrier-grade_NAT
----------
More information can be found at the following URL:
http://sip-router.org/tracker/index.php?do=details&task_id=402#comment1328
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#400 - Crash in asynchronous processing
User who did this - Carsten Bock (carstenbock)
----------
Hi Daniel,
i am just building new binaries, will test and most likely close the ticket... :-)
Thanks,
Carsten
----------
More information can be found at the following URL:
http://sip-router.org/tracker/index.php?do=details&task_id=400#comment1327
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 is now closed:
FS#399 - Potential issue with kamctl
User who did this - Daniel-Constantin Mierla (miconda)
Reason for closing: Fixed
More information can be found at the following URL:
http://sip-router.org/tracker/index.php?do=details&task_id=399
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#399 - Potential issue with kamctl
User who did this - Daniel-Constantin Mierla (miconda)
----------
Pushed a slightly different patch to master and 4.1 branch. Thanks.
----------
More information can be found at the following URL:
http://sip-router.org/tracker/index.php?do=details&task_id=399#comment1326
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.
The logging level constants were redefined in 3.0.0 to be one less than in
earlier versions. However it seems the perl library wasn't updated to
reflect this.
Attached is a patch to put the debug constants in line with the current
values.
Any objections if I push this patch into trunk and 4.1 branch?
Regards,
Torrey
Module: sip-router
Branch: 4.1
Commit: 92aaaab324b37d75358b21825850ade8a3481cd5
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=92aaaab…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Committer: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: Mon Mar 3 14:39:25 2014 +0100
kamctl: delete former fifo files if they exist
- reported by Morten Tryfoss, FS#399
(cherry picked from commit ec9e735955f58ef21bac21ba57eafd07db675e4d)
---
utils/kamctl/kamctl.fifo | 8 ++++++++
1 files changed, 8 insertions(+), 0 deletions(-)
diff --git a/utils/kamctl/kamctl.fifo b/utils/kamctl/kamctl.fifo
index 50c8e92..e57c7df 100644
--- a/utils/kamctl/kamctl.fifo
+++ b/utils/kamctl/kamctl.fifo
@@ -57,6 +57,10 @@ fifo_cmd()
fi
name=kamailio_receiver_$$
path=$CHROOT_DIR/tmp/$name
+ # delete existing fifo file with same name
+ if test -p $path; then
+ rm -f $path
+ fi
if [ ! -w $FIFOPATH ]; then
merr "Error opening Kamailio's FIFO $FIFOPATH"
merr "Make sure you have the line 'modparam(\"mi_fifo\", \"fifo_name\", \"$FIFOPATH\")' in your config"
@@ -106,6 +110,10 @@ CTLCMD=fifo_cmd
fifo_kamailio_monitor() {
name=kamailio_receiver_$$
path=$CHROOT_DIR/tmp/$name
+ # delete existing fifo file with same name
+ if test -p $path; then
+ rm -f $path
+ fi
if [ ! -w $FIFOPATH ]; then
merr "Error opening Kamailio's FIFO $FIFOPATH"
merr "Make sure you have the line 'modparam(\"mi_fifo\", \"fifo_name\", \"$FIFOPATH\")' in your config"