[svn-commits] russell: branch russell/cdr-q r249003 - in /team/russell/cdr-q: include/aster...

SVN commits to the Digium repositories svn-commits at lists.digium.com
Fri Feb 26 01:39:17 CST 2010


Author: russell
Date: Fri Feb 26 01:39:14 2010
New Revision: 249003

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=249003
Log:
s/arg/param/ doxygen fail

Modified:
    team/russell/cdr-q/include/asterisk/cdr.h
    team/russell/cdr-q/main/cdr.c

Modified: team/russell/cdr-q/include/asterisk/cdr.h
URL: http://svnview.digium.com/svn/asterisk/team/russell/cdr-q/include/asterisk/cdr.h?view=diff&rev=249003&r1=249002&r2=249003
==============================================================================
--- team/russell/cdr-q/include/asterisk/cdr.h (original)
+++ team/russell/cdr-q/include/asterisk/cdr.h Fri Feb 26 01:39:14 2010
@@ -164,8 +164,8 @@
 /*!
  * \brief CDR backend sink callback
  *
- * \arg cdr The CDR record to post to this backend sink
- * \arg data the backend supplied data associated with the current sink
+ * \param cdr The CDR record to post to this backend sink
+ * \param data the backend supplied data associated with the current sink
  *
  * This callback is provided by a CDR backend module and is to be used
  * for logging CDRs to a single destination.  The return value indicates
@@ -178,12 +178,12 @@
 /*!
  * \brief Register a sink for posting CDRs
  *
- * \arg name A name for the backend (such as the database type)
- * \arg desc A more verbose description of the backend type
- * \arg unique_id A unique ID that differentiates this sink from other
- *      sinks associated with the same CDR backend.
- * \arg sink_cb A callback for posting CDRs
- * \arg data opaque data passed to the callback
+ * \param name A name for the backend (such as the database type)
+ * \param desc A more verbose description of the backend type
+ * \param unique_id A unique ID that differentiates this sink from other
+ *        sinks associated with the same CDR backend.
+ * \param sink_cb A callback for posting CDRs
+ * \param data opaque data passed to the callback
  *
  * A CDR "sink" is a single destination for posting CDRs.  For example, a database
  * backend may be configured to post CDRs to multiple databases.  If that is the
@@ -203,7 +203,7 @@
 /*!
  * \brief Unregister a sink for posting CDRs
  *
- * \arg backend The reference returned from ast_cdr_register_sink().
+ * \param backend The reference returned from ast_cdr_register_sink().
  *
  * \retval 0 success
  * \retval -1 failure

Modified: team/russell/cdr-q/main/cdr.c
URL: http://svnview.digium.com/svn/asterisk/team/russell/cdr-q/main/cdr.c?view=diff&rev=249003&r1=249002&r2=249003
==============================================================================
--- team/russell/cdr-q/main/cdr.c (original)
+++ team/russell/cdr-q/main/cdr.c Fri Feb 26 01:39:14 2010
@@ -183,8 +183,8 @@
  * \internal
  * \brief Search for a CDR backend by name
  *
- * \arg name the name of a backend to search for
- * \arg unique_id the unique ID associated with this sink (if applicable)
+ * \param name the name of a backend to search for
+ * \param unique_id the unique ID associated with this sink (if applicable)
  *
  * \return an astobj2 reference to an ast_cdr_backend, or NULL if not found
  */
@@ -1526,8 +1526,8 @@
  * \internal
  * \brief Post a CDR to a specific CDR backend
  *
- * \arg backend the CDR backend to post to
- * \arg cdr the CDR record to post
+ * \param backend the CDR backend to post to
+ * \param cdr the CDR record to post
  *
  * \pre the backend is locked
  */




More information about the svn-commits mailing list