Module: sip-router
Branch: master
Commit: 5fe218c1ba48eeb4f1cecc0e26c4545972bc10a2
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=5fe218c…
Author: Marius Zbihlei <marius.zbihlei(a)1and1.ro>
Committer: Marius Zbihlei <marius.zbihlei(a)1and1.ro>
Date: Tue May 4 17:06:47 2010 +0300
core:sr_module.c increased number of pre-allocated static buffers in get_str_fparam()
Increased the number from 3 to 6 as more are needed by modules like carrierroute when avp's are used as function parameters
(Bug reported by Ole Kaas)
---
sr_module.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/sr_module.c b/sr_module.c
index dabbda9..23f014f 100644
--- a/sr_module.c
+++ b/sr_module.c
@@ -1419,7 +1419,7 @@ int fixup_str_2(void** param, int param_no)
#define PV_PRINT_BUF_SIZE 1024
-#define PV_PRINT_BUF_NO 3
+#define PV_PRINT_BUF_NO 6
/** Get the function parameter value as string.
* @return 0 - Success
* -1 - Cannot get value
Module: sip-router
Branch: master
Commit: 2095981e8bc7f25c39099c72468b61cf9a5dca59
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=2095981…
Author: Marius Zbihlei <marius.zbihlei(a)1and1.ro>
Committer: Marius Zbihlei <marius.zbihlei(a)1and1.ro>
Date: Tue May 4 13:10:03 2010 +0300
Modules:carrierroute: Fixed a bug in carrirroute module that might cause a crash if the routing prob was larger than the number of available routes.
The problem was caused by a missing else
---
modules/carrierroute/cr_func.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/modules/carrierroute/cr_func.c b/modules/carrierroute/cr_func.c
index a09866c..382df16 100644
--- a/modules/carrierroute/cr_func.c
+++ b/modules/carrierroute/cr_func.c
@@ -249,7 +249,7 @@ static struct route_rule * get_rule_by_hash(const struct route_flags * rf,
LM_WARN("too large desired hash, taking highest\n");
act_hash = rf->rules[rf->rule_num - 1];
}
- act_hash = rf->rules[prob - 1];
+ else act_hash = rf->rules[prob - 1];
if (!act_hash->status) {
if (act_hash->backup && act_hash->backup->rr) {
Hello
The function get_str_fparam() returns a pointer to one of the 3
allocated static buffers. This might cause some havoc (especially in
carrierroute module - bug reported by Ole Kass on sr-users list). I plan
to increase the number of buffers from 3 to 6. (each buffers is 1 kB in
size). If everybody is OK with this, I would like to commit to master
and kamailio_3.0 (I consider this a bug) this afternoon...
Cheers
Marius
Hello,
a short note that the merging of SIP Express Routers (SER) users mailing
list into sr-users is completed from subscriber point of view:
- posts to serusers(a)lists.iptel.org are directed to
sr-users(a)lists.sip-router.org
- posts to sr-users(a)lists.sip-router.org are received by subscribers of
serusers(a)lists.iptel.org
Just a bit of time ago, kamailio (openser) users' mailing list was
merged as well.
Since the release 3.0.x is practically the same source code, no mater
the binary is compiled as ser or kamailio, and the development is in the
same place (code in same repository), a combined mailing lists
environment is the right for providing the best answers in shortest time
for both communities.
Therefore, now there are two mailing lists:
- sr-users(a)lists.sip-router.org - to be used for discussions about
stable versions and generic project/community topics
- sr-dev(a)lists.sip-router.org - to be used for discussions about devel
version and future development topics
If you were subscribed to both with same email address, you won't get
duplicates. If you had some settings that are no longer in place, please
contact one of devels on sr-dev lists or write to me.
Cheers,
Daniel
--
Daniel-Constantin Mierla
* http://www.asipto.com/
* http://twitter.com/miconda
* http://www.linkedin.com/in/danielconstantinmierla
THIS IS AN AUTOMATED MESSAGE, DO NOT REPLY.
A user has added themself to the list of users assigned to this task.
FS#70 - Add support of PVs in Regular Expression Transformations
User who did this - Juha Heinanen (jh)
http://sip-router.org/tracker/index.php?do=details&task_id=70
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.
A new Flyspray task has been opened. Details are below.
User who did this - Juha Heinanen (jh)
Attached to Project - sip-router
Summary - Add support of PVs in Regular Expression Transformations
Task Type - Feature Request
Category - Core
Status - Assigned
Assigned To - Andrei Pelinescu-Onciul
Operating System - All
Severity - Low
Priority - Normal
Reported Version - Development
Due in Version - Undecided
Due Date - Undecided
Details - It would be convenient if PVs could be used in regular expression transformations, for example:
$var(user) = $(ru{re.subst,/$var(from)/$var(to)});
or may be better:
$var(user) = $(ru{re.subst,$var(regex)});
-- Juha
More information can be found at the following URL:
http://sip-router.org/tracker/index.php?do=details&task_id=70
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.