THIS IS AN AUTOMATED MESSAGE, DO NOT REPLY.
The following task is now closed:
FS#200 - Some cases when rtp proxy not change port numbers in media
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=200
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#200 - Some cases when rtp proxy not change port numbers in media
User who did this - Daniel-Constantin Mierla (miconda)
----------
Can you try with git devel version? I just pushed a patch to check for quotes around boundary value. v3.0 is quite old, newer versions use a dedicated sdp parser from the core for nat traversal as well, which was not there in the past.
If the master branch is working fine, I will backport to 3.2, eventually 3.1, but I guess 3.0 uses the old nathelper embedded sdp parsing.
I am closing the item as well, if you still have issues with devel branch, reopen.
----------
More information can be found at the following URL:
http://sip-router.org/tracker/index.php?do=details&task_id=200#comment510
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.
Daniel-Constantin Mierla has taken ownership of the following task:
FS#200 - Some cases when rtp proxy not change port numbers in media
More information can be found at the following URL:
http://sip-router.org/tracker/index.php?do=details&task_id=200
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#131 - nathelper path support with registrar on private network.
User who did this - Daniel-Constantin Mierla (miconda)
Reason for closing: Not a bug
Additional comments about closing: I checked the nathelper module and it uses path for doing SIP keepalives. Closing this item due to no followup for very long time. Reopen if there is still a problem and add more info (log messages, sip capture).
More information can be found at the following URL:
http://sip-router.org/tracker/index.php?do=details&task_id=131
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#208 - Crash when sqlops tries to do a 'select' on db_text
User who did this - Daniel-Constantin Mierla (miconda)
Reason for closing: Fixed
Additional comments about closing: Patch committed to GIT master branch, to be backported.
More information can be found at the following URL:
http://sip-router.org/tracker/index.php?do=details&task_id=208
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: master
Commit: edc4d902135d484d02272a64b7f27447fcb6854e
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=edc4d90…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Committer: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: Wed Mar 14 10:01:00 2012 +0100
sqlops: check for DB_CAP_RAW_QUERY of DB connection
- the module is using raw query capability and DB_CAP_ALL does not
include it
- reported by Pedro Vico, FS#208
---
modules_k/sqlops/sql_api.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/modules_k/sqlops/sql_api.c b/modules_k/sqlops/sql_api.c
index c02ac81..77ff97f 100644
--- a/modules_k/sqlops/sql_api.c
+++ b/modules_k/sqlops/sql_api.c
@@ -151,7 +151,7 @@ int sql_connect(void)
sc->name.len, sc->name.s);
return -1;
}
- if (!DB_CAPABILITY(sc->dbf, DB_CAP_ALL))
+ if (!DB_CAPABILITY(sc->dbf, DB_CAP_RAW_QUERY))
{
LM_ERR("database module does not have DB_CAP_ALL [%.*s]\n",
sc->name.len, sc->name.s);