Module: sip-router
Branch: master
Commit: ec755f34ef81886a09a5b84d3ffba443a6300a35
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=ec755f3…
Author: pd <peter.dunkley(a)crocodile-rcs.com>
Committer: pd <peter.dunkley(a)crocodile-rcs.com>
Date: Thu Jul 21 14:54:34 2011 +0100
dispatcher(k): changed the diagnostic about no sets being defined to debug
- This is currently an error. It's not an error that you don't have any sets,
it just means you haven't created any yet.
---
modules_k/dispatcher/dispatch.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/modules_k/dispatcher/dispatch.c b/modules_k/dispatcher/dispatch.c
index a056dcb..d1a9d70 100644
--- a/modules_k/dispatcher/dispatch.c
+++ b/modules_k/dispatcher/dispatch.c
@@ -2317,7 +2317,7 @@ void ds_check_timer(unsigned int ticks, void* param)
/* Check for the list. */
if(_ds_list==NULL || _ds_list_nr<=0)
{
- LM_ERR("no destination sets\n");
+ LM_DBG("no destination sets\n");
return;
}
THIS IS AN AUTOMATED MESSAGE, DO NOT REPLY.
A user has added themself to the list of users assigned to this task.
FS#141 - Uninitialized $var returns 0 instead of <null>
User who did this - Alex Hermann (axlh)
http://sip-router.org/tracker/index.php?do=details&task_id=141
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.
I’ve been looking through the presence module and have some questions regarding the DB_ONLY mode of operation.
Specifically the feature seems to rely on data not being written to hash tables in certain areas of the code, as no checking is done to verify which db_mode is being used.
However there are places where the hash table is populated irrelevant of the db_mode, for example the init code calls pres_htable_restore.
Additionally update_presentity seems to also manipulate the hash tables indiscriminately.
Am I missing something here, or is this a bug?
Paul
Module: sip-router
Branch: master
Commit: f157bd9cfbf21fe11e2df3f5d427d0ff193fae1c
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=f157bd9…
Author: Henning Westerholt <henning.westerholt(a)1und1.de>
Committer: Henning Westerholt <henning.westerholt(a)1und1.de>
Date: Thu Jul 21 00:11:09 2011 +0200
core, counters mod: fix a bunch of doxygen errors, small whitespace fix
---
core_stats.h | 13 ++++++++-----
counters.c | 9 +++++----
mem/f_malloc.c | 2 +-
mem/f_malloc.h | 2 +-
modules/counters/counters.c | 7 +++++--
5 files changed, 20 insertions(+), 13 deletions(-)
diff --git a/core_stats.h b/core_stats.h
index 729d73e..4a65fd9 100644
--- a/core_stats.h
+++ b/core_stats.h
@@ -1,6 +1,4 @@
/*
- * $Id$
- *
* Copyright (C) 2010 iptelorg GmbH
*
* Permission to use, copy, modify, and distribute this software for any
@@ -15,11 +13,16 @@
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
-/** macros used for various core statistics.
- * (if USE_CORE_STATS is not defined they won't do anything)
- * @file core_stats.h
+
+/**
+ * @brief Macros used for various core statistics
+ *
+ * Macros used for various core statistics, (if USE_CORE_STATS is not defined
+ * they won't do anything).
+ * @file
* @ingroup core
*/
+
/*
* History:
* --------
diff --git a/counters.c b/counters.c
index 72a9b4e..6e5ffbb 100644
--- a/counters.c
+++ b/counters.c
@@ -1,6 +1,4 @@
/*
- * $Id$
- *
* Copyright (C) 2010 iptelorg GmbH
*
* Permission to use, copy, modify, and distribute this software for any
@@ -15,10 +13,13 @@
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
-/** counters/stats.
- * @file counters.c
+
+/**
+ * @brief counters/stats
+ * @file
* @ingroup: core
*/
+
/*
* History:
* --------
diff --git a/mem/f_malloc.c b/mem/f_malloc.c
index e93a334..be25546 100644
--- a/mem/f_malloc.c
+++ b/mem/f_malloc.c
@@ -750,7 +750,7 @@ void fm_status(struct fm_block* qm)
* Fills a malloc info structure with info about the block, if a
* parameter is not supported, it will be filled with 0
* \param qm memory block
- * \param memory information
+ * \param info memory information
*/
void fm_info(struct fm_block* qm, struct mem_info* info)
{
diff --git a/mem/f_malloc.h b/mem/f_malloc.h
index bd18bd9..db1f610 100644
--- a/mem/f_malloc.h
+++ b/mem/f_malloc.h
@@ -198,7 +198,7 @@ void fm_status(struct fm_block* qm);
* Fills a malloc info structure with info about the block, if a
* parameter is not supported, it will be filled with 0
* \param qm memory block
- * \param memory information
+ * \param info memory information
*/
void fm_info(struct fm_block* qm, struct mem_info* info);
diff --git a/modules/counters/counters.c b/modules/counters/counters.c
index 16da3c9..260f6cd 100644
--- a/modules/counters/counters.c
+++ b/modules/counters/counters.c
@@ -14,11 +14,14 @@
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
-/** counters/statistics rpcs and script functions.
- * @file counters.c
+
+/**
+ * @brief counters/statistics rpcs and script functions
+ * @file
* @ingroup counters
* Module: counters.
*/
+
/*
* History:
* -------