Hello,
Kamailio 1.5.3 will be released today. Please commit anything you have
for branch 1.5 on Sourceforge.net svn in the next two hours. Afterwards
we will start preparing the release.
Cheers,
Daniel
Revision: 5941
http://openser.svn.sourceforge.net/openser/?rev=5941&view=rev
Author: miconda
Date: 2009-10-21 09:30:44 +0000 (Wed, 21 Oct 2009)
Log Message:
-----------
- added spec file for centos
- credits to M. Bieliki
Added Paths:
-----------
branches/1.5/packaging/rpm/kamailio.spec.centos
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
andrei 2009/10/21 10:20:54 CEST
SER CVS Repository
Modified files:
. sctp_server.c
Log:
sctp: count rejects sent to the remote peer (stats)
It adds into sctp_handle_assoc_change() a call to
SCTP_STATS_LOCAL_REJECT() if the SCTP_ABORT is successfully sent.
Signed-off-by: Andrei Pelinescu-Onciul <andrei(a)iptel.org>
(backported from sip-router,
commit d4ff27b77a4d54be6be4cb45c7ccf0756a9f316a)
Author: Libor Chocholaty <libor(a)iptel.org>
Committer: Andrei Pelinescu-Onciul <andrei(a)iptel.org>
Revision Changes Path
1.34 +3 -1 sip_router/sctp_server.c
http://cvs.berlios.de/cgi-bin/viewcvs.cgi/ser/sip_router/sctp_server.c.diff…
Module: sip-router
Branch: master
Commit: 3c86cd2594331e7e25654eebf07a5e75b00ffe5c
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=3c86cd2…
Author: oej <oej(a)edvina.net>
Committer: oej <oej(a)edvina.net>
Date: Wed Oct 21 09:56:25 2009 +0200
Including configuration documentation from doc/cfg.txt in doxygen.
Note: This implements a change in the doxygen configuration file that needs to be implementted
on the web server too.
---
cfg_core.c | 17 +++++++++++++++--
doc/cfg.txt | 6 +++---
doc/doxygen/ser.doxygen | 3 ++-
3 files changed, 20 insertions(+), 6 deletions(-)
diff --git a/cfg_core.c b/cfg_core.c
index 574dcb2..75fa69c 100644
--- a/cfg_core.c
+++ b/cfg_core.c
@@ -26,11 +26,24 @@
*/
/*!
* \file
- * \brief SIP-router core :: Core configuration
+ * \brief SIP-router core :: Core configuration parser
* \ingroup core
* Module: \ref core
+ *
+ * See
+ * - \ref ConfigCoreDoc
+ * - \ref ConfigEngine
+ * - \ref cfg_core.h
+ */
+/*!
+ * \page ConfigCoreDoc Documentation of configuration parser
+ * \section ConfigParser Configuration parser
+ * Further information
+ * - \ref ConfigEngine
+ * - \ref cfg_core.h
+ * \verbinclude cfg.txt
+ *
*/
-
#include "dprint.h"
#ifdef USE_DST_BLACKLIST
diff --git a/doc/cfg.txt b/doc/cfg.txt
index e7be888..df1209c 100644
--- a/doc/cfg.txt
+++ b/doc/cfg.txt
@@ -4,13 +4,13 @@
# --------
# 2007-12-06: Created by Miklos
-SER Configuration Framework
+SIP-router Configuration Framework
1. Overview
===============================================================================
-The configuration framework can be used by SER core and by the modules,
-to get and set internal variables on-the-fly, and eliminate SER restarts
+The configuration framework can be used by SIP-router core and by modules,
+to get and set internal variables on-the-fly, and eliminate server restarts
whenever it is possible.
The core and the modules can declare configuration variables, and can
diff --git a/doc/doxygen/ser.doxygen b/doc/doxygen/ser.doxygen
index 1b91f40..9072e10 100644
--- a/doc/doxygen/ser.doxygen
+++ b/doc/doxygen/ser.doxygen
@@ -569,7 +569,8 @@ EXCLUDE_SYMBOLS =
# directories that contain example code fragments that are included (see
# the \include command).
-EXAMPLE_PATH = doc/doxygen/examples
+EXAMPLE_PATH = doc/doxygen/examples \
+ doc
# If the value of the EXAMPLE_PATH tag contains directories, you can use the
# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp
Module: sip-router
Branch: master
Commit: 62c6c5df9cc502a3b1bac0b66144c3da617de20c
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=62c6c5d…
Author: oej <oej(a)edvina.net>
Committer: oej <oej(a)edvina.net>
Date: Wed Oct 21 09:45:15 2009 +0200
Renaming ser-coding-style.txt to sr-coding-style.txt and adds "SIP-router" in the heading
...to make it known that this is not an old expired document...
---
doc/{ser-coding-style.txt => sr-coding-style.txt} | 14 ++++++++++++--
1 files changed, 12 insertions(+), 2 deletions(-)
diff --git a/doc/ser-coding-style.txt b/doc/sr-coding-style.txt
similarity index 72%
rename from doc/ser-coding-style.txt
rename to doc/sr-coding-style.txt
index 5a2d2f5..eedcf30 100644
--- a/doc/ser-coding-style.txt
+++ b/doc/sr-coding-style.txt
@@ -1,11 +1,12 @@
# $Id$
#
-# SER Coding Style
+# SIP-router Coding Style
#
# 2004-06-07 Andrei Pelinescu - Onciul <pelinescu-onciul(a)fokus.franhofer.de>
Important rules:
+----------------
- use tabs for identations
- tabs are set to 4 spaces
- break lines longer than 80 characters
@@ -26,6 +27,7 @@ Important rules:
Not so important rules:
+-----------------------
- don't declare and init variable in the same time (unless they are static or global)
e.g.:
use instead of int i=0;
@@ -41,6 +43,14 @@ Not so important rules:
- try to describe what a function does in a comment at the head of the function
(try to document at least the return values)
-If you are editing someone elses code, try to use his coding conventions (unless they contradict with some of the above rules).
+Doxygen
+-------
+- try to always add doxygen comments to functions and variables declared in your code.
+ Especially remember to document public functions, functions and structures
+ that are part of the SIP-router API.
+- each file needs a declaration of the purpose of the file in the \file section
+
+If you are editing someone elses code, try to use his coding conventions
+(unless they contradict with some of the above rules).