mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-04 20:04:50 +00:00
main: Fix for Doxygen.
ASTERISK-29763 Change-Id: Ib8359e3590a9109eb04a5376559d040e5e21867e
This commit is contained in:
committed by
Friendly Automation
parent
191b92a69e
commit
37c29b6a28
@@ -1618,7 +1618,7 @@ enum mansession_message_parsing {
|
||||
};
|
||||
|
||||
/*! \brief In case you didn't read that giant block of text above the mansession_session struct, the
|
||||
* \ref struct mansession is named this solely to keep the API the same in Asterisk. This structure really
|
||||
* \ref mansession is named this solely to keep the API the same in Asterisk. This structure really
|
||||
* represents data that is different from Manager action to Manager action. The mansession_session pointer
|
||||
* contained within points to session-specific data.
|
||||
*/
|
||||
@@ -3735,8 +3735,6 @@ static void json_escape(char *out, const char *in)
|
||||
*
|
||||
* \param s AMI stream to append a string.
|
||||
* \param str String to append to the stream after JSON escaping it.
|
||||
*
|
||||
* \return Nothing
|
||||
*/
|
||||
static void astman_append_json(struct mansession *s, const char *str)
|
||||
{
|
||||
@@ -4859,7 +4857,8 @@ static int action_status(struct mansession *s, const struct message *m)
|
||||
* \param payload_size The size of the given payload
|
||||
* \param action The type of read action to queue
|
||||
*
|
||||
* \return -1 on error, 0 on success
|
||||
* \retval -1 on error
|
||||
* \retval 0 on success
|
||||
*/
|
||||
static int queue_read_action_payload(struct ast_channel *chan, const unsigned char *payload,
|
||||
size_t payload_size, enum ast_frame_read_action action)
|
||||
@@ -4891,7 +4890,8 @@ static int queue_read_action_payload(struct ast_channel *chan, const unsigned ch
|
||||
* \param chan The channel to queue the action on
|
||||
* \param body The body of the message
|
||||
*
|
||||
* \return -1 on error, 0 on success
|
||||
* \retval -1 on error
|
||||
* \retval 0 on success
|
||||
*/
|
||||
static int queue_sendtext(struct ast_channel *chan, const char *body)
|
||||
{
|
||||
@@ -4906,7 +4906,8 @@ static int queue_sendtext(struct ast_channel *chan, const char *body)
|
||||
* \param body The body of the message
|
||||
* \param content_type The message's content type
|
||||
*
|
||||
* \return -1 on error, 0 on success
|
||||
* \retval -1 on error
|
||||
* \retval 0 on success
|
||||
*/
|
||||
static int queue_sendtext_data(struct ast_channel *chan, const char *body,
|
||||
const char *content_type)
|
||||
@@ -5399,8 +5400,6 @@ struct fast_originate_helper {
|
||||
* \internal
|
||||
*
|
||||
* \param doomed Struct to destroy.
|
||||
*
|
||||
* \return Nothing
|
||||
*/
|
||||
static void destroy_fast_originate_helper(struct fast_originate_helper *doomed)
|
||||
{
|
||||
@@ -6142,6 +6141,7 @@ static int action_filter(struct mansession *s, const struct message *m)
|
||||
* \brief Add an event filter to a manager session
|
||||
*
|
||||
* \param filter_pattern Filter syntax to add, see below for syntax
|
||||
* \param whitefilters, blackfilters
|
||||
*
|
||||
* \return FILTER_ALLOC_FAILED Memory allocation failure
|
||||
* \return FILTER_COMPILE_FAIL If the filter did not compile
|
||||
@@ -7371,8 +7371,6 @@ static int ast_manager_register_struct(struct manager_action *act)
|
||||
* \brief Destroy the registered AMI action object.
|
||||
*
|
||||
* \param obj Object to destroy.
|
||||
*
|
||||
* \return Nothing
|
||||
*/
|
||||
static void action_destroy(void *obj)
|
||||
{
|
||||
@@ -8916,8 +8914,6 @@ static struct ast_cli_entry cli_manager[] = {
|
||||
* \brief Load the config channelvars variable.
|
||||
*
|
||||
* \param var Config variable to load.
|
||||
*
|
||||
* \return Nothing
|
||||
*/
|
||||
static void load_channelvars(struct ast_variable *var)
|
||||
{
|
||||
|
Reference in New Issue
Block a user