THIS IS AN AUTOMATED MESSAGE, DO NOT REPLY.
The following task is now closed:
FS#306 - modules/lcr: use pv_cache_get on mod_init
User who did this - Juha Heinanen (jh)
Reason for closing: Implemented
Additional comments about closing: Patch has been applied.
More information can be found at the following URL:
http://sip-router.org/tracker/index.php?do=details&task_id=306
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#306 - modules/lcr: use pv_cache_get on mod_init
User who did this - Daniel-Constantin Mierla (miconda)
----------
To clarify, a patch to use the core pv cache instead of parsing locally the PV specs is good, because can help in using lower memory and eventually faster startup -- over all it cannot not make it worse, but better.
If this patch is done well, should be applied.
My concern was related to dumping PV values at runtime via rpc, which is in another item FS#307.
----------
More information can be found at the following URL:
http://sip-router.org/tracker/index.php?do=details&task_id=306#comment931
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#306 - modules/lcr: use pv_cache_get on mod_init
User who did this - Juha Heinanen (jh)
----------
Looks like there is some uncertainty about the patch. I leave it uncommitted for now until there is agreement that the patch makes sense.
----------
More information can be found at the following URL:
http://sip-router.org/tracker/index.php?do=details&task_id=306#comment930
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: 2940d5012250a134745a2cf9abed2f88ed95576e
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=2940d50…
Author: Klaus Darilion <klaus.mailinglists(a)pernau.at>
Committer: Klaus Darilion <klaus.mailinglists(a)pernau.at>
Date: Mon Jun 3 22:10:20 2013 +0000
modules/auth_db: document authentication return values
---
modules/auth_db/doc/auth_db_admin.xml | 20 ++++++++++++++++++--
1 files changed, 18 insertions(+), 2 deletions(-)
diff --git a/modules/auth_db/doc/auth_db_admin.xml b/modules/auth_db/doc/auth_db_admin.xml
index 999c3cf..246d532 100644
--- a/modules/auth_db/doc/auth_db_admin.xml
+++ b/modules/auth_db/doc/auth_db_admin.xml
@@ -327,13 +327,27 @@ modparam("auth_db", "version_table", 0)
occurred and no reply was sent out;
</para></listitem>
<listitem><para>
- <emphasis>-2 (invalid password)</emphasis> - valid user, but
- wrong password;
+ <emphasis>-2 (invalid password)</emphasis> - wrong password;
</para></listitem>
<listitem><para>
<emphasis>-3 (invalid user)</emphasis> - authentication user does
not exist.
</para></listitem>
+ <listitem><para>
+ <emphasis>-4 (nonce expired)</emphasis> - the nonce has expired
+ </para></listitem>
+ <listitem><para>
+ <emphasis>-5 (no credentials)</emphasis> - request does not contain
+ an Authorization header with the correct realm.
+ </para></listitem>
+ <listitem><para>
+ <emphasis>-6 (nonce reused)</emphasis> - the nonce has already been
+ used to authenticate a previous request
+ </para></listitem>
+ <listitem><para>
+ <emphasis>-8 (authuser mismatch)</emphasis> - depending on the method, th
+ From/To/RURI user does not match the authentication user (see auth_check() function).
+ </para></listitem>
</itemizedlist>
<para>Meaning of the parameters is as follows:</para>
<itemizedlist>
@@ -479,6 +493,8 @@ if (!proxy_authorize("$fd", "subscriber)) {
the function checks if authentication username matches From/To header
username, and Request-URI in case of PUBLISH.
</para>
+ <para>Negative return codes have the same meaning as for
+ www_authenticate().</para>
<para>Meaning of the parameters is as follows:</para>
<itemizedlist>
<listitem>
THIS IS AN AUTOMATED MESSAGE, DO NOT REPLY.
The following task has a new comment added:
FS#306 - modules/lcr: use pv_cache_get on mod_init
User who did this - Víctor Seva (linuxmaniac)
----------
FS#307 tries to dump some values. We can discuss on FS#307 if that makes sense at all or if there is a better way to accomplish that task.
----------
More information can be found at the following URL:
http://sip-router.org/tracker/index.php?do=details&task_id=306#comment929
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#306 - modules/lcr: use pv_cache_get on mod_init
User who did this - Daniel-Constantin Mierla (miconda)
----------
To clarify things a bit. Usage of PV cache from core is good because can lower usage of pkg memory if PVs are used more than once in config file.
I had no time to look at FS#307, maybe it just dumps the names of PVs used in config, which is ok. But, if it tries dumping PVs values, then it will be rather impossible in many cases and quite dangerous.
----------
More information can be found at the following URL:
http://sip-router.org/tracker/index.php?do=details&task_id=306#comment928
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.