mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-05 04:11:08 +00:00
Doxygen documentation update from oej (issue #5505)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6847 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -14,9 +14,9 @@
|
||||
* at the top of the source tree.
|
||||
*/
|
||||
|
||||
/*
|
||||
/*! \file
|
||||
*
|
||||
* Caller ID related dialplan functions
|
||||
* \brief Caller ID related dialplan functions
|
||||
*
|
||||
*/
|
||||
|
||||
|
@@ -16,9 +16,9 @@
|
||||
* at the top of the source tree.
|
||||
*/
|
||||
|
||||
/*
|
||||
/*! \file
|
||||
*
|
||||
* Call Detail Record related dialplan functions
|
||||
* \brief Call Detail Record related dialplan functions
|
||||
*
|
||||
*/
|
||||
|
||||
|
@@ -18,9 +18,9 @@
|
||||
* at the top of the source tree.
|
||||
*/
|
||||
|
||||
/*
|
||||
/*! \file
|
||||
*
|
||||
* Functions for interaction with the Asterisk database
|
||||
* \brief Functions for interaction with the Asterisk database
|
||||
*
|
||||
*/
|
||||
|
||||
|
@@ -18,10 +18,10 @@
|
||||
* at the top of the source tree.
|
||||
*/
|
||||
|
||||
/*
|
||||
*
|
||||
* Enum Functions
|
||||
/*! \file
|
||||
*
|
||||
* \brief ENUM Functions
|
||||
* \arg See also AstENUM
|
||||
*/
|
||||
|
||||
#include <stdlib.h>
|
||||
|
@@ -14,9 +14,9 @@
|
||||
* at the top of the source tree.
|
||||
*/
|
||||
|
||||
/*
|
||||
/*! \file
|
||||
*
|
||||
* Environment related dialplan functions
|
||||
* \brief Environment related dialplan functions
|
||||
*
|
||||
*/
|
||||
|
||||
|
@@ -14,9 +14,9 @@
|
||||
* at the top of the source tree.
|
||||
*/
|
||||
|
||||
/*
|
||||
/*! \file
|
||||
*
|
||||
* Channel group related dialplan functions
|
||||
* \brief Channel group related dialplan functions
|
||||
*
|
||||
*/
|
||||
|
||||
|
@@ -14,9 +14,9 @@
|
||||
* at the top of the source tree.
|
||||
*/
|
||||
|
||||
/*
|
||||
/*! \file
|
||||
*
|
||||
* Language related dialplan functions
|
||||
* \brief Language related dialplan functions
|
||||
*
|
||||
*/
|
||||
|
||||
|
@@ -15,9 +15,9 @@
|
||||
* at the top of the source tree.
|
||||
*/
|
||||
|
||||
/*
|
||||
/*! \file
|
||||
*
|
||||
* Conditional logic dialplan functions
|
||||
* \brief Conditional logic dialplan functions
|
||||
*
|
||||
*/
|
||||
|
||||
|
@@ -16,9 +16,9 @@
|
||||
* at the top of the source tree.
|
||||
*/
|
||||
|
||||
/*
|
||||
/*! \file
|
||||
*
|
||||
* Maths relatad dialplan functions
|
||||
* \brief Maths relatad dialplan functions
|
||||
*
|
||||
*/
|
||||
|
||||
|
@@ -16,9 +16,9 @@
|
||||
* at the top of the source tree.
|
||||
*/
|
||||
|
||||
/*
|
||||
/*! \file
|
||||
*
|
||||
* MD5 digest related dialplan functions
|
||||
* \brief MD5 digest related dialplan functions
|
||||
*
|
||||
*/
|
||||
|
||||
|
@@ -16,9 +16,9 @@
|
||||
* at the top of the source tree.
|
||||
*/
|
||||
|
||||
/*
|
||||
/*! \file
|
||||
*
|
||||
* Functions for reading or setting the MusicOnHold class
|
||||
* \brief Functions for reading or setting the MusicOnHold class
|
||||
*
|
||||
*/
|
||||
|
||||
|
@@ -16,9 +16,9 @@
|
||||
* at the top of the source tree.
|
||||
*/
|
||||
|
||||
/*
|
||||
/*! \file
|
||||
*
|
||||
* String manipulation dialplan functions
|
||||
* \brief String manipulation dialplan functions
|
||||
*
|
||||
*/
|
||||
|
||||
|
@@ -16,9 +16,9 @@
|
||||
* at the top of the source tree.
|
||||
*/
|
||||
|
||||
/*
|
||||
/*! \file
|
||||
*
|
||||
* Channel timeout related dialplan functions
|
||||
* \brief Channel timeout related dialplan functions
|
||||
*
|
||||
*/
|
||||
|
||||
|
@@ -16,12 +16,12 @@
|
||||
* at the top of the source tree.
|
||||
*/
|
||||
|
||||
/*
|
||||
/*! \file
|
||||
*
|
||||
* URI encoding / decoding
|
||||
* \brief URI encoding / decoding
|
||||
*
|
||||
* For now this code only supports 8 bit characters, not unicode,
|
||||
* which we ultimately will need to support.
|
||||
* \note For now this code only supports 8 bit characters, not unicode,
|
||||
which we ultimately will need to support.
|
||||
*
|
||||
*/
|
||||
|
||||
@@ -40,7 +40,7 @@
|
||||
#include "asterisk/app.h"
|
||||
#include "asterisk/module.h"
|
||||
|
||||
/*--- builtin_function_uriencode: Encode URL according to RFC 2396 */
|
||||
/*! \brief builtin_function_uriencode: Encode URL according to RFC 2396 */
|
||||
static char *builtin_function_uriencode(struct ast_channel *chan, char *cmd, char *data, char *buf, size_t len)
|
||||
{
|
||||
char uri[BUFSIZ];
|
||||
@@ -56,7 +56,7 @@ static char *builtin_function_uriencode(struct ast_channel *chan, char *cmd, cha
|
||||
return buf;
|
||||
}
|
||||
|
||||
/*--- builtin_function_uridecode: Decode URI according to RFC 2396 */
|
||||
/*!\brief builtin_function_uridecode: Decode URI according to RFC 2396 */
|
||||
static char *builtin_function_uridecode(struct ast_channel *chan, char *cmd, char *data, char *buf, size_t len)
|
||||
{
|
||||
if (!data || ast_strlen_zero(data)) {
|
||||
|
@@ -16,9 +16,9 @@
|
||||
* at the top of the source tree.
|
||||
*/
|
||||
|
||||
/*
|
||||
/*! \file
|
||||
*
|
||||
* Builtin dialplan functions
|
||||
* \brief Builtin dialplan functions
|
||||
*
|
||||
*/
|
||||
|
||||
|
Reference in New Issue
Block a user