Module: sip-router
Branch: master
Commit: 7665aefc966409588cca8e2a70d8a03e4d7a6fa1
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=7665aef…
Author: Juha Heinanen <jh(a)tutpro.com>
Committer: Juha Heinanen <jh(a)tutpro.com>
Date: Wed May 9 07:42:14 2012 +0300
modules_k/auth_radius: fixed typo in README
- Fixed authorization return code for authorization failed. It should
be 2 instead of 3. Reported by Ricardo Martinez.
---
modules_k/auth_radius/README | 2 +-
modules_k/auth_radius/doc/auth_radius_admin.xml | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/modules_k/auth_radius/README b/modules_k/auth_radius/README
index f44d94e..1875408 100644
--- a/modules_k/auth_radius/README
+++ b/modules_k/auth_radius/README
@@ -227,7 +227,7 @@ modparam("auth_radius", "use_ruri_flag", 22)
* -6 (nonce reused) - nonce is used more than once;
* -5 (no credentials) - credentials were not found in request;
* -4 (stale nonce) - stale nonce;
- * -3 (authorization failed) - RADIUS responded with Access Reject
+ * -2 (authorization failed) - RADIUS responded with Access Reject
which may be, for example, due to user not found or wrong password;
* -1 (error) - some error occured during authorization (see syslog);
diff --git a/modules_k/auth_radius/doc/auth_radius_admin.xml b/modules_k/auth_radius/doc/auth_radius_admin.xml
index becb3fe..5deb681 100644
--- a/modules_k/auth_radius/doc/auth_radius_admin.xml
+++ b/modules_k/auth_radius/doc/auth_radius_admin.xml
@@ -226,7 +226,7 @@ modparam("auth_radius", "use_ruri_flag", 22)
<emphasis>-4 (stale nonce)</emphasis> - stale nonce;
</para></listitem>
<listitem><para>
- <emphasis>-3 (authorization failed)</emphasis> - RADIUS responded with Access Reject which may be, for example, due to user not found or wrong password;
+ <emphasis>-2 (authorization failed)</emphasis> - RADIUS responded with Access Reject which may be, for example, due to user not found or wrong password;
</para></listitem>
<listitem><para>
<emphasis>-1 (error)</emphasis> - some error occured during authorization (see syslog);
There is few configuration that not works in the documentation for Kamailio 3.2.0
For example: in http://kamailio.org/docs/modules/3.2.x/modules_k/acc.html
modparam("acc", "radius_config", "/etc/radiusclient/radiusclient.conf")
modparam("acc", "radius_extra", "via=$hdr(Via[*]); email=$avp(s:email)")
Give errors : set_mod_param_regex: parameter <radius_extra> not found in module <acc>
Thanks to review the deprecated parameters modules
Pierre St-Germain
Module: sip-router
Branch: master
Commit: 8485536f1fd56127e38101d48d02afbacd5f4f6d
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=8485536…
Author: Peter Dunkley <peter.dunkley(a)crocodile-rcs.com>
Committer: Peter Dunkley <peter.dunkley(a)crocodile-rcs.com>
Date: Tue May 8 16:47:07 2012 +0100
modules_k/presence: Dedicated notifier processes
- This fixes a bug in presence where, when subs_db_mode is database
only, under high loads with lots of presentity changes you can get
several different NOTIFY requests sent with the same CSeq.
- The dedicated notifier processes only work when in database only
mode.
- The dedicated notifier processes are enabled (with one notifier
process) by default when in database only mode.
- You can disable the dedicated notifier processes by setting the
"notifier_processes" modparam to 0.
- The notifier processes are executed on a timer and deal with a
small amount of the outstanding notifications each time they run.
By default (changeable through the "waitn_time" modparam) all
dialogs are processed every five seconds. This means it will take
between 0 and five seconds (on average 2.5 seconds) between a
presentity or dialog update occurring and a NOTIFY request being
sent.
---
modules_k/presence/README | 246 +++++---
modules_k/presence/doc/presence_admin.xml | 85 +++-
modules_k/presence/notify.c | 1054 ++++++++++++++++++++++++++++-
modules_k/presence/notify.h | 4 +
modules_k/presence/presence.c | 116 +++-
modules_k/presence/presence.h | 7 +
modules_k/presence/presentity.c | 246 +++++++-
modules_k/presence/presentity.h | 2 +
modules_k/presence/publish.c | 70 ++-
modules_k/presence/subscribe.c | 200 +++++-
modules_k/presence/subscribe.h | 1 +
11 files changed, 1837 insertions(+), 194 deletions(-)
Diff: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commitdiff;h=848…