[svn-commits] oej: trunk r66705 - in /trunk: apps/ channels/
include/asterisk/ res/
svn-commits at lists.digium.com
svn-commits at lists.digium.com
Thu May 31 03:26:56 MST 2007
Author: oej
Date: Thu May 31 05:26:55 2007
New Revision: 66705
URL: http://svn.digium.com/view/asterisk?view=rev&rev=66705
Log:
Issue #9842 - Doxygen updates by snuffy. Thanks!
(Committed from Media Plaza in Utrecht, Netherlands - Open Source VoIP conference)
Modified:
trunk/apps/app_meetme.c
trunk/apps/app_minivm.c
trunk/apps/app_osplookup.c
trunk/apps/app_skel.c
trunk/channels/chan_sip.c
trunk/include/asterisk/app.h
trunk/include/asterisk/event.h
trunk/include/asterisk/event_defs.h
trunk/res/res_jabber.c
Modified: trunk/apps/app_meetme.c
URL: http://svn.digium.com/view/asterisk/trunk/apps/app_meetme.c?view=diff&rev=66705&r1=66704&r2=66705
==============================================================================
--- trunk/apps/app_meetme.c (original)
+++ trunk/apps/app_meetme.c Thu May 31 05:26:55 2007
@@ -724,6 +724,7 @@
* \param make Make the conf if it doesn't exist
* \param dynamic Mark the newly created conference as dynamic
* \param refcount How many references to mark on the conference
+ * \param chan The asterisk channel
*
* \return A pointer to the conference struct, or NULL if it wasn't found and
* make or dynamic were not set.
@@ -3648,7 +3649,7 @@
/*! \brief Calculate the ring delay for a given ringing trunk on a station
* \param station the station
- * \param trunk the trunk. If NULL, the highest priority ringing trunk will be used
+ * \param ringing_trunk the trunk. If NULL, the highest priority ringing trunk will be used
* \return the number of ms left before the delay is complete, or INT_MAX if there is no delay
*/
static int sla_check_station_delay(struct sla_station *station,
Modified: trunk/apps/app_minivm.c
URL: http://svn.digium.com/view/asterisk/trunk/apps/app_minivm.c?view=diff&rev=66705&r1=66704&r2=66705
==============================================================================
--- trunk/apps/app_minivm.c (original)
+++ trunk/apps/app_minivm.c Thu May 31 05:26:55 2007
@@ -1146,6 +1146,7 @@
/*! \brief Checks if directory exists. Does not create directory, but builds string in dest
* \param dest String. base directory.
+ * \param len Int. Length base directory string.
* \param domain String. Ignored if is null or empty string.
* \param username String. Ignored if is null or empty string.
* \param folder String. Ignored if is null or empty string.
@@ -1166,7 +1167,7 @@
* \param len Length of directory string
* \param domain String. Ignored if is null or empty string.
* \param folder String. Ignored if is null or empty string.
- * \param ext String. Ignored if is null or empty string.
+ * \param username String. Ignored if is null or empty string.
* \return -1 on failure, 0 on success.
*/
static int create_dirpath(char *dest, int len, char *domain, char *username, char *folder)
@@ -2898,6 +2899,7 @@
/*! \brief Access counter file, lock directory, read and possibly write it again changed
\param directory Directory to crate file in
+ \param countername filename
\param value If set to zero, we only read the variable
\param operand 0 to read, 1 to set new value, 2 to change
\return -1 on error, otherwise counter value
Modified: trunk/apps/app_osplookup.c
URL: http://svn.digium.com/view/asterisk/trunk/apps/app_osplookup.c?view=diff&rev=66705&r1=66704&r2=66705
==============================================================================
--- trunk/apps/app_osplookup.c (original)
+++ trunk/apps/app_osplookup.c Thu May 31 05:26:55 2007
@@ -1115,6 +1115,7 @@
/*!
* \brief OSP Lookup Next function
+ * \param provider OSP provider name
* \param cause Asterisk hangup cuase
* \param result Lookup results, in/output
* \return 1 Found , 0 No route, -1 Error
Modified: trunk/apps/app_skel.c
URL: http://svn.digium.com/view/asterisk/trunk/apps/app_skel.c?view=diff&rev=66705&r1=66704&r2=66705
==============================================================================
--- trunk/apps/app_skel.c (original)
+++ trunk/apps/app_skel.c Thu May 31 05:26:55 2007
@@ -20,7 +20,7 @@
*
* \brief Skeleton application
*
- * \author <Your Name Here> <<Your Email Here>>
+ * \author\verbatim <Your Name Here> <<Your Email Here>> \endvebatim
*
* This is a skeleton for development of an Asterisk application
* \ingroup applications
Modified: trunk/channels/chan_sip.c
URL: http://svn.digium.com/view/asterisk/trunk/channels/chan_sip.c?view=diff&rev=66705&r1=66704&r2=66705
==============================================================================
--- trunk/channels/chan_sip.c (original)
+++ trunk/channels/chan_sip.c Thu May 31 05:26:55 2007
@@ -1585,7 +1585,7 @@
static struct ast_frame *sip_rtp_read(struct ast_channel *ast, struct sip_pvt *p, int *faxdetect);
/*------ T38 Support --------- */
-static int sip_handle_t38_reinvite(struct ast_channel *chan, struct sip_pvt *pvt, int reinvite); /*!< T38 negotiation helper function */
+static int sip_handle_t38_reinvite(struct ast_channel *chan, struct sip_pvt *pvt, int reinvite);
static int transmit_response_with_t38_sdp(struct sip_pvt *p, char *msg, struct sip_request *req, int retrans);
static struct ast_udptl *sip_get_udptl_peer(struct ast_channel *chan);
static int sip_set_udptl_peer(struct ast_channel *chan, struct ast_udptl *udptl);
Modified: trunk/include/asterisk/app.h
URL: http://svn.digium.com/view/asterisk/trunk/include/asterisk/app.h?view=diff&rev=66705&r1=66704&r2=66705
==============================================================================
--- trunk/include/asterisk/app.h (original)
+++ trunk/include/asterisk/app.h Thu May 31 05:26:55 2007
@@ -44,7 +44,7 @@
AST_ACTION_MENU, /*!< adata is a pointer to an ast_ivr_menu */
AST_ACTION_REPEAT, /*!< adata is max # of repeats, cast to a pointer */
AST_ACTION_RESTART, /*!< adata is like repeat, but resets repeats to 0 */
- AST_ACTION_TRANSFER, /*!< adata is a string with exten[@context] */
+ AST_ACTION_TRANSFER, /*!< adata is a string with exten\verbatim[@context]\endverbatim */
AST_ACTION_WAITOPTION, /*!< adata is a timeout, or 0 for defaults */
AST_ACTION_NOOP, /*!< adata is unused */
AST_ACTION_BACKLIST, /*!< adata is list of files separated by ; allows interruption */
Modified: trunk/include/asterisk/event.h
URL: http://svn.digium.com/view/asterisk/trunk/include/asterisk/event.h?view=diff&rev=66705&r1=66704&r2=66705
==============================================================================
--- trunk/include/asterisk/event.h (original)
+++ trunk/include/asterisk/event.h Thu May 31 05:26:55 2007
@@ -200,7 +200,7 @@
* AST_EVENT_IE_END))) {
* return;
* }
- * \code
+ * \endcode
*
* This creates a MWI event with 3 information elements, a mailbox which is
* a string, and the number of new and old messages, specified as integers.
Modified: trunk/include/asterisk/event_defs.h
URL: http://svn.digium.com/view/asterisk/trunk/include/asterisk/event_defs.h?view=diff&rev=66705&r1=66704&r2=66705
==============================================================================
--- trunk/include/asterisk/event_defs.h (original)
+++ trunk/include/asterisk/event_defs.h Thu May 31 05:26:55 2007
@@ -64,7 +64,7 @@
*/
AST_EVENT_IE_OLDMSGS = 0x02,
/*!
- * \brief Mailbox name (mailbox[@context])
+ * \brief Mailbox name \verbatim (mailbox[@context]) \endverbatim
* Used by: AST_EVENT_MWI
* Payload type: STR
*/
Modified: trunk/res/res_jabber.c
URL: http://svn.digium.com/view/asterisk/trunk/res/res_jabber.c?view=diff&rev=66705&r1=66704&r2=66705
==============================================================================
--- trunk/res/res_jabber.c (original)
+++ trunk/res/res_jabber.c Thu May 31 05:26:55 2007
@@ -1090,7 +1090,7 @@
}
/*!
- * \brief Handles <iq> tags.
+ * \brief Handles \verbatim <iq> \endverbatim tags.
* \param client structure and the iq node.
* \return void.
*/
More information about the svn-commits
mailing list