Update of /usr/cvsroot/asterisk/pbx
In directory mongoose.digium.com:/tmp/cvs-serv19926/pbx

Modified Files:
        pbx_config.c 
Log Message:
finish merging doxygen updates from issue #5605


Index: pbx_config.c
===================================================================
RCS file: /usr/cvsroot/asterisk/pbx/pbx_config.c,v
retrieving revision 1.71
retrieving revision 1.72
diff -u -d -r1.71 -r1.72
--- pbx_config.c        24 Oct 2005 20:12:06 -0000      1.71
+++ pbx_config.c        14 Nov 2005 19:00:38 -0000      1.72
@@ -19,6 +19,7 @@
 /*! \file
  *
  * \brief Populate and remember extensions from static config file
+ *
  * 
  */
 
@@ -120,14 +121,16 @@
  * Implementation of functions provided by this module
  */
 
-/*
+/*!
  * REMOVE INCLUDE command stuff
  */
 static int handle_context_dont_include(int fd, int argc, char *argv[])
 {
-       if (argc != 5) return RESULT_SHOWUSAGE;
+       if (argc != 5)
+               return RESULT_SHOWUSAGE;
 
-       if (strcmp(argv[3], "in")) return RESULT_SHOWUSAGE;
+       if (strcmp(argv[3], "in"))
+               return RESULT_SHOWUSAGE;
 
        if (!ast_context_remove_include(argv[4], argv[2], registrar)) {
                ast_cli(fd, "We are not including '%s' in '%s' now\n",
@@ -361,7 +364,7 @@
        return NULL;
 }
 
-/*
+/*!
  * REMOVE EXTENSION command stuff
  */
 static int handle_context_remove_extension(int fd, int argc, char *argv[])
@@ -701,7 +704,7 @@
        return NULL; 
 }
 
-/*
+/*!
  * Include context ...
  */
 static int handle_context_add_include(int fd, int argc, char *argv[])
@@ -913,8 +916,8 @@
        return NULL;
 }
 
-/*
- * 'save dialplan' CLI command implementation functions ...
+/*!
+ * \brief 'save dialplan' CLI command implementation functions ...
  */
 static int handle_save_dialplan(int fd, int argc, char *argv[])
 {
@@ -1151,8 +1154,8 @@
        return RESULT_SUCCESS;
 }
 
-/*
- * ADD EXTENSION command stuff
+/*!
+ * \brief ADD EXTENSION command stuff
  */
 static int handle_context_add_extension(int fd, int argc, char *argv[])
 {
@@ -1239,7 +1242,7 @@
        return RESULT_SUCCESS;
 }
 
-/* add extension 6123,1,Dial,IAX/212.71.138.13/6123 into local */
+/*! add extension 6123,1,Dial,IAX/212.71.138.13/6123 into local */
 static char *complete_context_add_extension(char *line, char *word,
        int pos, int state)
 {
@@ -1284,7 +1287,7 @@
        return NULL;
 }
 
-/*
+/*!
  * IGNOREPAT CLI stuff
  */
 static int handle_context_add_ignorepat(int fd, int argc, char *argv[])
@@ -1542,7 +1545,7 @@
        return NULL;
 }
 
-/*
+/*!
  * CLI entries for commands provided by this module
  */
 static struct ast_cli_entry context_dont_include_cli =
@@ -1583,7 +1586,7 @@
        { { "extensions", "reload", NULL}, handle_reload_extensions,
                "Reload extensions and *only* extensions", 
reload_extensions_help };
 
-/*
+/*!
  * Standard module functions ...
  */
 int unload_module(void)

_______________________________________________
Asterisk-Cvs mailing list
[email protected]
http://lists.digium.com/mailman/listinfo/asterisk-cvs

Reply via email to