mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-25 15:08:53 +00:00
Miscellaneous stand alone comment cleanups.
........ Merged revisions 400661 from http://svn.asterisk.org/svn/asterisk/branches/12 git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@400662 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -1268,8 +1268,12 @@ static const struct autopause {
|
|||||||
#define DEFAULT_TIMEOUT 15
|
#define DEFAULT_TIMEOUT 15
|
||||||
#define RECHECK 1 /*!< Recheck every second to see we we're at the top yet */
|
#define RECHECK 1 /*!< Recheck every second to see we we're at the top yet */
|
||||||
#define MAX_PERIODIC_ANNOUNCEMENTS 10 /*!< The maximum periodic announcements we can have */
|
#define MAX_PERIODIC_ANNOUNCEMENTS 10 /*!< The maximum periodic announcements we can have */
|
||||||
#define DEFAULT_MIN_ANNOUNCE_FREQUENCY 15 /*!< The minimum number of seconds between position announcements \
|
/*!
|
||||||
The default value of 15 provides backwards compatibility */
|
* \brief The minimum number of seconds between position announcements.
|
||||||
|
* \note The default value of 15 provides backwards compatibility.
|
||||||
|
*/
|
||||||
|
#define DEFAULT_MIN_ANNOUNCE_FREQUENCY 15
|
||||||
|
|
||||||
#define MAX_QUEUE_BUCKETS 53
|
#define MAX_QUEUE_BUCKETS 53
|
||||||
|
|
||||||
#define RES_OKAY 0 /*!< Action completed */
|
#define RES_OKAY 0 /*!< Action completed */
|
||||||
|
@@ -518,8 +518,6 @@ struct stasis_message_type *ast_manager_get_generic_type(void);
|
|||||||
*/
|
*/
|
||||||
struct stasis_topic *ast_manager_get_topic(void);
|
struct stasis_topic *ast_manager_get_topic(void);
|
||||||
|
|
||||||
struct ast_json;
|
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
* \since 12
|
* \since 12
|
||||||
* \brief Publish an event to AMI
|
* \brief Publish an event to AMI
|
||||||
|
@@ -731,7 +731,7 @@ struct ao2_container *stasis_cache_dump(struct stasis_cache *cache,
|
|||||||
void stasis_log_bad_type_access(const char *name);
|
void stasis_log_bad_type_access(const char *name);
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
* \brief Boiler-plate removing macro for defining message types.
|
* \brief Boiler-plate messaging macro for defining public message types.
|
||||||
*
|
*
|
||||||
* \code
|
* \code
|
||||||
* STASIS_MESSAGE_TYPE_DEFN(ast_foo_type,
|
* STASIS_MESSAGE_TYPE_DEFN(ast_foo_type,
|
||||||
@@ -757,7 +757,7 @@ void stasis_log_bad_type_access(const char *name);
|
|||||||
}
|
}
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
* \brief Boiler-plate removing macro for defining local message types.
|
* \brief Boiler-plate messaging macro for defining local message types.
|
||||||
*
|
*
|
||||||
* \code
|
* \code
|
||||||
* STASIS_MESSAGE_TYPE_DEFN_LOCAL(ast_foo_type,
|
* STASIS_MESSAGE_TYPE_DEFN_LOCAL(ast_foo_type,
|
||||||
@@ -783,7 +783,7 @@ void stasis_log_bad_type_access(const char *name);
|
|||||||
}
|
}
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
* \brief Boiler-plate removing macro for initializing message types.
|
* \brief Boiler-plate messaging macro for initializing message types.
|
||||||
*
|
*
|
||||||
* \code
|
* \code
|
||||||
* if (STASIS_MESSAGE_TYPE_INIT(ast_foo_type) != 0) {
|
* if (STASIS_MESSAGE_TYPE_INIT(ast_foo_type) != 0) {
|
||||||
@@ -805,7 +805,7 @@ void stasis_log_bad_type_access(const char *name);
|
|||||||
})
|
})
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
* \brief Boiler-plate removing macro for cleaning up message types.
|
* \brief Boiler-plate messaging macro for cleaning up message types.
|
||||||
*
|
*
|
||||||
* Note that if your type is defined in core instead of a loadable module, you
|
* Note that if your type is defined in core instead of a loadable module, you
|
||||||
* should call message type cleanup from an ast_register_cleanup() handler
|
* should call message type cleanup from an ast_register_cleanup() handler
|
||||||
|
Reference in New Issue
Block a user