mirror of
https://github.com/asterisk/asterisk.git
synced 2025-12-04 20:21:55 +00:00
Fix some doxygen, typos and whitespace
This commit is contained in:
committed by
github-actions[bot]
parent
d88cbd0229
commit
f7c64ff3ee
@@ -214,7 +214,7 @@
|
|||||||
and <emphasis>start</emphasis> execution at that location.</para>
|
and <emphasis>start</emphasis> execution at that location.</para>
|
||||||
<para>NOTE: Any channel variables you want the called channel to inherit from the caller channel must be
|
<para>NOTE: Any channel variables you want the called channel to inherit from the caller channel must be
|
||||||
prefixed with one or two underbars ('_').</para>
|
prefixed with one or two underbars ('_').</para>
|
||||||
<para>NOTE: Using this option from a Macro() or GoSub() might not make sense as there would be no return points.</para>
|
<para>NOTE: Using this option from a Macro() or Gosub() might not make sense as there would be no return points.</para>
|
||||||
</option>
|
</option>
|
||||||
<option name="g">
|
<option name="g">
|
||||||
<para>Proceed with dialplan execution at the next priority in the current extension if the
|
<para>Proceed with dialplan execution at the next priority in the current extension if the
|
||||||
|
|||||||
@@ -177,7 +177,7 @@
|
|||||||
to the specified destination and <emphasis>start</emphasis> execution at that location.</para>
|
to the specified destination and <emphasis>start</emphasis> execution at that location.</para>
|
||||||
<para>NOTE: Any channel variables you want the called channel to inherit from the caller channel must be
|
<para>NOTE: Any channel variables you want the called channel to inherit from the caller channel must be
|
||||||
prefixed with one or two underbars ('_').</para>
|
prefixed with one or two underbars ('_').</para>
|
||||||
<para>NOTE: Using this option from a Macro() or GoSub() might not make sense as there would be no return points.</para>
|
<para>NOTE: Using this option from a Macro() or Gosub() might not make sense as there would be no return points.</para>
|
||||||
</option>
|
</option>
|
||||||
<option name="h">
|
<option name="h">
|
||||||
<para>Allow <emphasis>callee</emphasis> to hang up by pressing <literal>*</literal>.</para>
|
<para>Allow <emphasis>callee</emphasis> to hang up by pressing <literal>*</literal>.</para>
|
||||||
|
|||||||
@@ -90,7 +90,7 @@ bindaddr = 0.0.0.0
|
|||||||
; events from being received in a stream (as opposed to this option which
|
; events from being received in a stream (as opposed to this option which
|
||||||
; would prevent specified events from being generated at all).
|
; would prevent specified events from being generated at all).
|
||||||
|
|
||||||
;disabledevents = Newexten,Varset
|
;disabledevents = Newexten,VarSet
|
||||||
|
|
||||||
;[mark]
|
;[mark]
|
||||||
;secret = mysecret
|
;secret = mysecret
|
||||||
|
|||||||
@@ -55,7 +55,7 @@ extern "C" {
|
|||||||
#define AST_CALLID_BUFFER_LENGTH 13
|
#define AST_CALLID_BUFFER_LENGTH 13
|
||||||
|
|
||||||
enum ast_logger_results {
|
enum ast_logger_results {
|
||||||
AST_LOGGER_SUCCESS = 0, /*!< Log channel was created or deleted successfully*/
|
AST_LOGGER_SUCCESS = 0, /*!< Log channel was created or deleted successfully */
|
||||||
AST_LOGGER_FAILURE = 1, /*!< Log channel already exists for create or doesn't exist for deletion of log channel */
|
AST_LOGGER_FAILURE = 1, /*!< Log channel already exists for create or doesn't exist for deletion of log channel */
|
||||||
AST_LOGGER_DECLINE = -1, /*!< Log channel request was not accepted */
|
AST_LOGGER_DECLINE = -1, /*!< Log channel request was not accepted */
|
||||||
AST_LOGGER_ALLOC_ERROR = -2 /*!< filename allocation error */
|
AST_LOGGER_ALLOC_ERROR = -2 /*!< filename allocation error */
|
||||||
@@ -162,7 +162,9 @@ void __attribute__((format(printf, 5, 6))) ast_queue_log(const char *queuename,
|
|||||||
*
|
*
|
||||||
* \details This works like ast_log, but prints verbose messages to the console depending on verbosity level set.
|
* \details This works like ast_log, but prints verbose messages to the console depending on verbosity level set.
|
||||||
*
|
*
|
||||||
|
* \code
|
||||||
* ast_verbose(VERBOSE_PREFIX_3 "Whatever %s is happening\n", "nothing");
|
* ast_verbose(VERBOSE_PREFIX_3 "Whatever %s is happening\n", "nothing");
|
||||||
|
* \endcode
|
||||||
*
|
*
|
||||||
* This will print the message to the console if the verbose level is set to a level >= 3
|
* This will print the message to the console if the verbose level is set to a level >= 3
|
||||||
*
|
*
|
||||||
@@ -224,9 +226,9 @@ void ast_console_toggle_mute(int fd, int silent);
|
|||||||
|
|
||||||
/*!
|
/*!
|
||||||
* \brief enables or disables logging of a specified level to the console
|
* \brief enables or disables logging of a specified level to the console
|
||||||
* fd specifies the index of the console receiving the level change
|
* \param fd specifies the index of the console receiving the level change
|
||||||
* level specifies the index of the logging level being toggled
|
* \param level specifies the index of the logging level being toggled
|
||||||
* state indicates whether logging will be on or off (0 for off, 1 for on)
|
* \param state indicates whether logging will be on or off (0 for off, 1 for on)
|
||||||
*/
|
*/
|
||||||
void ast_console_toggle_loglevel(int fd, int level, int state);
|
void ast_console_toggle_loglevel(int fd, int level, int state);
|
||||||
|
|
||||||
@@ -365,7 +367,7 @@ const char *ast_logger_get_dateformat(void);
|
|||||||
ast_callid ast_create_callid(void);
|
ast_callid ast_create_callid(void);
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
* \brief extracts the callerid from the thread
|
* \brief extracts the callid from the thread
|
||||||
*
|
*
|
||||||
* \retval Non-zero Call id related to the thread
|
* \retval Non-zero Call id related to the thread
|
||||||
* \retval 0 if no call_id is present in the thread
|
* \retval 0 if no call_id is present in the thread
|
||||||
|
|||||||
@@ -340,10 +340,6 @@ int ast_refer_notify_transfer_request(struct ast_channel *originating_chan, cons
|
|||||||
const char *protocol_id, struct ast_channel *dest, struct ast_refer_params *params,
|
const char *protocol_id, struct ast_channel *dest, struct ast_refer_params *params,
|
||||||
enum ast_control_transfer state);
|
enum ast_control_transfer state);
|
||||||
|
|
||||||
/*!
|
|
||||||
* @}
|
|
||||||
*/
|
|
||||||
|
|
||||||
#if defined(__cplusplus) || defined(c_plusplus)
|
#if defined(__cplusplus) || defined(c_plusplus)
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
@@ -120,7 +120,7 @@
|
|||||||
prefixed with one or two underbars ('_').</para>
|
prefixed with one or two underbars ('_').</para>
|
||||||
</note>
|
</note>
|
||||||
<note>
|
<note>
|
||||||
<para>Using this option from a Macro() or GoSub() might not make sense as there would be no return points.</para>
|
<para>Using this option from a Macro() or Gosub() might not make sense as there would be no return points.</para>
|
||||||
</note>
|
</note>
|
||||||
<note>
|
<note>
|
||||||
<para>This option will override the 'x' option</para>
|
<para>This option will override the 'x' option</para>
|
||||||
|
|||||||
@@ -1836,8 +1836,8 @@ end:
|
|||||||
* \brief Merge media states for a delayed session refresh
|
* \brief Merge media states for a delayed session refresh
|
||||||
*
|
*
|
||||||
* \param session_name For log messages
|
* \param session_name For log messages
|
||||||
* \param delayed_pending_state The pending media state at the time the resuest was queued
|
* \param delayed_pending_state The pending media state at the time the request was queued
|
||||||
* \param delayed_active_state The active media state at the time the resuest was queued
|
* \param delayed_active_state The active media state at the time the request was queued
|
||||||
* \param current_active_state The current active media state
|
* \param current_active_state The current active media state
|
||||||
* \param run_post_validation Whether to run validation on the resulting media state or not
|
* \param run_post_validation Whether to run validation on the resulting media state or not
|
||||||
*
|
*
|
||||||
|
|||||||
Reference in New Issue
Block a user