Module: sip-router
Branch: andrei/cdefs2doc
Commit: a9255ea7e90978fcd6f955f51aae28883efc6282
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=a9255ea…
Author: Andrei Pelinescu-Onciul <andrei(a)iptel.org>
Committer: Andrei Pelinescu-Onciul <andrei(a)iptel.org>
Date: Mon Oct 19 18:05:25 2009 +0200
doc: script to generate cfg var lists from C code
Added a perl script that generates the list of config variables
defined in a C file.
The script uses gcc to generate a syntax tree structure for an
entire file and then parses and uses the tree to locate
the config vars. definition, initialization and default values.
E.g.: dump_cfg_defs.pl --file ../../../cfg_core.c --grp core
=> ...
31. core.udp_mtu
fallback to a congestion controlled protocol if send size
exceeds udp_mtu.
Default: 0.
Range: 0 - 65535.
Type: integer.
...
The config group (--grp) needs to be specified only if it cannot
be auto-detected (under normal circumstances it is auto-detected
from the type name of the variable holding the default values,
e.g. cfg_group_core).
If the default values are set in the same .c file, they will be
added to the list.
Note: the script requires a patched version of the
GCC:TranslationUnit perl package. To get the patch use:
dump_cfg_defs.pl --patch
---
doc/scripts/cdefs2doc/dump_cfg_defs.pl | 434 ++++++++++++++++++++++++++++++++
1 files changed, 434 insertions(+), 0 deletions(-)
Diff: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commitdiff;h=a92…
Module: sip-router
Branch: master
Commit: 44abbbf85cf0bca3aab4a37c43b5365875610446
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=44abbbf…
Author: oej <oej(a)edvina.net>
Committer: oej <oej(a)edvina.net>
Date: Mon Oct 19 14:42:44 2009 +0200
Merge branch 'master' of ssh://oej@git.sip-router.org/sip-router
* 'master' of ssh://oej@git.sip-router.org/sip-router:
Fixed carrierroute module exports.
Test 26.sh (uncomment)
Fixed userblacklist exported function
Fixed test 25.
event parser: Add missing string boundary checks to event_parser func.
tm: Number of fixes in code and documentation for serial forking.
Implements function reset_path_vector.
---
Module: sip-router
Branch: master
Commit: fab47ef346ac13a15758824ab52ec3139c34e986
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=fab47ef…
Author: oej <oej(a)edvina.net>
Committer: oej <oej(a)edvina.net>
Date: Mon Oct 19 00:41:13 2009 +0200
Changing product name
---
modules_k/sst/sst.c | 6 +++---
modules_k/sst/sst_handlers.c | 6 +++---
modules_k/sst/sst_handlers.h | 6 +++---
modules_k/sst/sst_mi.c | 6 +++---
modules_k/sst/sst_mi.h | 6 +++---
5 files changed, 15 insertions(+), 15 deletions(-)
diff --git a/modules_k/sst/sst.c b/modules_k/sst/sst.c
index 33a6d60..a5babfb 100644
--- a/modules_k/sst/sst.c
+++ b/modules_k/sst/sst.c
@@ -7,14 +7,14 @@
* Copyright (C) 2006 SOMA Networks, INC.
* Written by: Ron Winacott (karwin)
*
- * This file is part of Kamailio, a free SIP server.
+ * This file is part of SIP-router, a free SIP server.
*
- * Kamailio is free software; you can redistribute it and/or modify it
+ * SIP-router is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version
*
- * Kamailio is distributed in the hope that it will be useful, but
+ * SIP-router is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
diff --git a/modules_k/sst/sst_handlers.c b/modules_k/sst/sst_handlers.c
index 43f1c09..d077d41 100644
--- a/modules_k/sst/sst_handlers.c
+++ b/modules_k/sst/sst_handlers.c
@@ -4,14 +4,14 @@
* Copyright (C) 2006 SOMA Networks, Inc.
* Written by Ron Winacott (karwin)
*
- * This file is part of Kamailio, a free SIP server.
+ * This file is part of SIP-router, a free SIP server.
*
- * Kamailio is free software; you can redistribute it and/or modify it
+ * SIP-router is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version
*
- * Kamailio is distributed in the hope that it will be useful, but
+ * SIP-router is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
diff --git a/modules_k/sst/sst_handlers.h b/modules_k/sst/sst_handlers.h
index 1dd107f..3c4ef08 100644
--- a/modules_k/sst/sst_handlers.h
+++ b/modules_k/sst/sst_handlers.h
@@ -4,14 +4,14 @@
* Copyright (C) 2006 SOMA Networks, Inc.
* Written By Ron Winacott (karwin)
*
- * This file is part of Kamailio, a free SIP server.
+ * This file is part of SIP-router, a free SIP server.
*
- * Kamailio is free software; you can redistribute it and/or modify it
+ * SIP-router is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version
*
- * Kamailio is distributed in the hope that it will be useful, but
+ * SIP-router is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
diff --git a/modules_k/sst/sst_mi.c b/modules_k/sst/sst_mi.c
index 99afa93..904345b 100644
--- a/modules_k/sst/sst_mi.c
+++ b/modules_k/sst/sst_mi.c
@@ -4,14 +4,14 @@
* Copyright (C) 2008 SOMA Networks, Inc.
* Written By Ovidiu Sas (osas)
*
- * This file is part of Kamailio, a free SIP server.
+ * This file is part of SIP-router, a free SIP server.
*
- * Kamailio is free software; you can redistribute it and/or modify it
+ * SIP-router is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version
*
- * Kamailio is distributed in the hope that it will be useful, but
+ * SIP-router is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
diff --git a/modules_k/sst/sst_mi.h b/modules_k/sst/sst_mi.h
index 767a62f..5607177 100644
--- a/modules_k/sst/sst_mi.h
+++ b/modules_k/sst/sst_mi.h
@@ -4,14 +4,14 @@
* Copyright (C) 2008 SOMA Networks, Inc.
* Written By Ovidiu Sas (osas)
*
- * This file is part of Kamailio, a free SIP server.
+ * This file is part of SIP-router, a free SIP server.
*
- * Kamailio is free software; you can redistribute it and/or modify it
+ * SIP-router is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version
*
- * Kamailio is distributed in the hope that it will be useful, but
+ * SIP-router is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.