[ http://tracker.iptel.org/browse/SER-15?page=all ]
Pavel Kasparek updated SER-15:
------------------------------
Comment: was deleted
> Variable timer should automatically turn on noisy_ctimer for the transaction
> ----------------------------------------------------------------------------
>
> Key: SER-15
> URL: http://tracker.iptel.org/browse/SER-15
> Project: SER
> Issue Type: Improvement
> Components: Transaction Manager
> Affects Versions: 0.9.5
> Reporter: Jan Janak
> Assigned To: Jan Janak
> Priority: Minor
> Fix For: 0.9.5
>
>
> We should automaticaly enable noisy_ctimer when a transaction uses variable timers (i.e. the value of the timers is different from the default value configured for the tm module). That would allow us to keep noisy_ctimers on in general and the would only be enabled when it is necessary.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://tracker.iptel.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
[ http://tracker.iptel.org/browse/SER-5?page=all ]
Pavel Kasparek updated SER-5:
-----------------------------
Comment: was deleted
> Version table not created by msilo.sql
> --------------------------------------
>
> Key: SER-5
> URL: http://tracker.iptel.org/browse/SER-5
> Project: SER
> Issue Type: Improvement
> Components: Message Silo
> Affects Versions: 0.9.4
> Environment: FreeBSD
> Reporter: Norman Brandinger
> Assigned To: Andrei Pelinescu - Onciul
> Priority: Minor
> Fix For: 0.9.4
>
>
> The new msilo module has a sample msilo.sql file to create a msilo database outside of the ser database. The new msilo database appears to require a version table, with:
> table_name: silo
> version: 3
> The version table is not created and not populated by the msilo.sql sample.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://tracker.iptel.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
[ http://tracker.iptel.org/browse/SER-1?page=all ]
Pavel Kasparek updated SER-1:
-----------------------------
Comment: was deleted
> drop ordering of contacts in favor of max_contacts
> --------------------------------------------------
>
> Key: SER-1
> URL: http://tracker.iptel.org/browse/SER-1
> Project: SER
> Issue Type: Task
> Components: Registrar
> Affects Versions: Wishlist
> Reporter: Jan Janak
> Assigned To: Jan Janak
> Priority: Minor
>
> ordering of contacts is not necessary anymore
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://tracker.iptel.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
Module: sip-router
Branch: master
Commit: 1962f98b3020896ccf705f1dd6a15259fe557139
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=1962f98…
Author: Henning Westerholt <henning.westerholt(a)1und1.de>
Committer: Henning Westerholt <henning.westerholt(a)1und1.de>
Date: Mon Apr 26 13:15:19 2010 +0200
htable(k): add a note about the htable size enforcement rules in the mod
---
modules_k/htable/README | 8 +++++---
modules_k/htable/doc/htable_admin.xml | 9 ++++++---
2 files changed, 11 insertions(+), 6 deletions(-)
diff --git a/modules_k/htable/README b/modules_k/htable/README
index a9f66c0..9e8fe6f 100644
--- a/modules_k/htable/README
+++ b/modules_k/htable/README
@@ -123,7 +123,7 @@ Chapter 1. Admin Guide
Example 1.1. Accessing $sht(htname=>key)
...
-modparam("htable", "htable", "a=>size=4;")
+modparam("htable", "htable", "a=>size=8;")
...
$sht(a=>test) = 1;
$sht(a=>$ci::srcip) = $si;
@@ -145,7 +145,7 @@ $sht(a=>$ci::srcip) = $si;
Example 1.2. Dictionary attack limitation
...
-modparam("htable", "htable", "a=>size=4;")
+modparam("htable", "htable", "a=>size=8;")
...
if(is_present_hf("Authorization"))
{
@@ -243,7 +243,9 @@ if(is_present_hf("Authorization"))
* htname - string specifying the name of the hash table. This string
is used by $sht(...) to refer to the hash table.
* size - number specifying the size of hash table. Larger value means
- less collisions. The number of entries in the table is 2^size.
+ less collisions. The number of entries in the table is 2^size. The
+ possible range for this value is from 8 to 14, smaller or larger
+ values will be increased or decreased respectivly.
* autoexpire -time in seconds to delete an item from hash table if no
update was done to it. If is missing or set to 0, the items won't
expire.
diff --git a/modules_k/htable/doc/htable_admin.xml b/modules_k/htable/doc/htable_admin.xml
index 0d1ad8d..1257b6f 100644
--- a/modules_k/htable/doc/htable_admin.xml
+++ b/modules_k/htable/doc/htable_admin.xml
@@ -28,7 +28,7 @@
<title>Accessing $sht(htname=>key)</title>
<programlisting format="linespecific">
...
-modparam("htable", "htable", "a=>size=4;")
+modparam("htable", "htable", "a=>size=8;")
...
$sht(a=>test) = 1;
$sht(a=>$ci::srcip) = $si;
@@ -55,7 +55,7 @@ $sht(a=>$ci::srcip) = $si;
<title>Dictionary attack limitation</title>
<programlisting format="linespecific">
...
-modparam("htable", "htable", "a=>size=4;")
+modparam("htable", "htable", "a=>size=8;")
...
if(is_present_hf("Authorization"))
{
@@ -220,7 +220,10 @@ if(is_present_hf("Authorization"))
<listitem>
<para>
<emphasis>size</emphasis> - number specifying the size of hash
- table. Larger value means less collisions. The number of entries in the table is 2^size.
+ table. Larger value means less collisions. The number of entries
+ in the table is 2^size. The possible range for this value is from
+ 8 to 14, smaller or larger values will be increased or decreased
+ respectivly.
</para>
</listitem>
<listitem>
THIS IS AN AUTOMATED MESSAGE, DO NOT REPLY.
A new Flyspray task has been opened. Details are below.
User who did this - Marc Villacorta (marc)
Attached to Project - sip-router
Summary - nathelper.c: rtpproxy_offer / rtpproxy_answer (str2 parameter ignored)
Task Type - Bug Report
Category - Modules kamailio
Status - Assigned
Assigned To - Daniel-Constantin Mierla
Operating System - All
Severity - Low
Priority - Normal
Reported Version - Development
Due in Version - Undecided
Due Date - Undecided
Details - Hello, I noticed that in
<code>rtpproxy_offer("","1.2.3.4")</code>
1.2.3.4 is ignored.
Also, in nathelper.c
<code>static int
rtpproxy_offer1_f(struct sip_msg *msg, char *str1, char *str2)
{
char *cp;
fparam_t param2;
char newip[IP_ADDR_MAX_STR_SIZE];
cp = ip_addr2a(&msg->rcv.dst_ip);
strcpy(newip, cp);
param2.type = FPARAM_STRING;
param2.orig = param2.v.asciiz = newip;
return rtpproxy_offer2_f(msg, str1, (char*)¶m2);
}
</code>
str2 is ignored. Same thing to rtpproxy_answer.
Thank you,
Marc Villacorta
More information can be found at the following URL:
http://sip-router.org/tracker/index.php?do=details&task_id=69
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 user has added themself to the list of users assigned to this task.
FS#69 - nathelper.c: rtpproxy_offer / rtpproxy_answer (str2 parameter ignored)
User who did this - Marc Villacorta (marc)
http://sip-router.org/tracker/index.php?do=details&task_id=69
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: 20cddb28e968d8e0f79a7910d3cc83fa6f40887f
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=20cddb2…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Committer: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: Fri Apr 23 23:58:43 2010 +0200
cfg: extended preprocessor directives
- you can define values for IDs
- defined IDs are replaced at startup, during config parsing, e.g.,:
$var(x) = 100 + MYINT;
- is interpreted as:
$var(x) = 100 + 123;
- you can have multi-line defined IDs
while($var(i)<5) { \
xlog("++++ $var(i)\n"); \
$var(i) = $var(i) + 1; \
}
- then in routing block
route {
...
IDLOOP
...
}
- new preprocessor directive
- perform substitutions inside the strings of config (not that define is
replacing only IDs - alphanumeric tokens not enclosed in quotes)
- #!subst offers an easy way to search and replace inside strings before
cfg parsing. E.g.,:
modparam("acc", "db_url", "mysql://user:DBPASSWD@localhost/db")
- will do the substitution of db password in db_url parameter value
- number of allowed defines set to 256
- credits to Andrei for quick hints on ID defines
- notes:
- multilines defines are reduced to single line, so line counter
should be fine
- column counter goes inside the define value, but you have to omit
the \ and CR for the accurate inside-define position
---
cfg.lex | 137 +++++++++++++++++++++++++++++++++++++++++++++++++++++----------
cfg.y | 8 ++++
ppcfg.c | 116 +++++++++++++++++++++++++++++++++++++++++++++++++++++
ppcfg.h | 30 ++++++++++++++
4 files changed, 270 insertions(+), 21 deletions(-)
Diff: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commitdiff;h=20c…