Small doxygen changes

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@212844 65c4cc65-6c06-0410-ace0-fbb531ad65f3
certified/1.8.6
Olle Johansson 16 years ago
parent 98f42ac6fa
commit 80cdd9b61d

@ -653,7 +653,7 @@ static int earlyalert;
static int endalert; static int endalert;
static int extendby; static int extendby;
/* Log participant count to the RealTime backend */ /*! Log participant count to the RealTime backend */
static int rt_log_members; static int rt_log_members;
#define MAX_CONFNUM 80 #define MAX_CONFNUM 80
@ -925,13 +925,13 @@ static struct {
.thread = AST_PTHREADT_NULL, .thread = AST_PTHREADT_NULL,
}; };
/*! The number of audio buffers to be allocated on pseudo channels /*! \brief The number of audio buffers to be allocated on pseudo channels
* when in a conference */ * when in a conference */
static int audio_buffers; static int audio_buffers;
/*! Map 'volume' levels from -5 through +5 into /*! \briefMap 'volume' levels from -5 through +5 into
* decibel (dB) settings for channel drivers * decibel (dB) settings for channel drivers
* Note: these are not a straight linear-to-dB * \note these are not a straight linear-to-dB
* conversion... the numbers have been modified * conversion... the numbers have been modified
* to give the user a better level of adjustability * to give the user a better level of adjustability
*/ */
@ -1716,7 +1716,8 @@ static void conf_flush(int fd, struct ast_channel *chan)
} }
/* Remove the conference from the list and free it. /*! \brief Remove the conference from the list and free it.
We assume that this was called while holding conflock. */ We assume that this was called while holding conflock. */
static int conf_free(struct ast_conference *conf) static int conf_free(struct ast_conference *conf)
{ {
@ -1865,7 +1866,7 @@ static void sla_queue_event_conf(enum sla_event_type type, struct ast_channel *c
sla_queue_event_full(type, trunk_ref, station, 1); sla_queue_event_full(type, trunk_ref, station, 1);
} }
/* Decrement reference counts, as incremented by find_conf() */ /*! \brief Decrement reference counts, as incremented by find_conf() */
static int dispose_conf(struct ast_conference *conf) static int dispose_conf(struct ast_conference *conf)
{ {
int res = 0; int res = 0;
@ -4004,8 +4005,9 @@ static struct ast_conf_user *find_user(struct ast_conference *conf, const char *
return NULL; return NULL;
} }
/*! \brief The MeetMeadmin application */ /*! \brief The MeetMeadmin application
/* MeetMeAdmin(confno, command, caller) */
MeetMeAdmin(confno, command, caller) */
static int admin_exec(struct ast_channel *chan, const char *data) { static int admin_exec(struct ast_channel *chan, const char *data) {
char *params; char *params;
struct ast_conference *cnf; struct ast_conference *cnf;
@ -4186,8 +4188,8 @@ static int admin_exec(struct ast_channel *chan, const char *data) {
return 0; return 0;
} }
/*--- channel_admin_exec: The MeetMeChannelAdmin application */ /*! \brief The MeetMeChannelAdmin application
/* MeetMeChannelAdmin(channel, command) */ MeetMeChannelAdmin(channel, command) */
static int channel_admin_exec(struct ast_channel *chan, const char *data) { static int channel_admin_exec(struct ast_channel *chan, const char *data) {
char *params; char *params;
struct ast_conference *conf = NULL; struct ast_conference *conf = NULL;

Loading…
Cancel
Save