[asterisk-commits] app confbridge: Add ability to get the muted conference state. (asterisk[master])
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Fri Feb 5 11:49:15 CST 2016
Joshua Colp has submitted this change and it was merged.
Change subject: app_confbridge: Add ability to get the muted conference state.
......................................................................
app_confbridge: Add ability to get the muted conference state.
* Added CONFBRIDGE_INFO(muted,) for querying the muted conference state.
* Added Muted header to AMI ConfbridgeListRooms action response list
events to indicate the muted conference state.
* Added Muted column to CLI "confbridge list" output to indicate the muted
conference state and made the locked column a yes/no value instead of a
locked/unlocked value.
ASTERISK-20987
Reported by: hristo
Change-Id: I4076bd8ea1c23a3afd4f5833e9291b49a0c448b1
---
M CHANGES
M apps/app_confbridge.c
2 files changed, 32 insertions(+), 11 deletions(-)
Approvals:
Kevin Harwell: Looks good to me, but someone else must approve
Anonymous Coward #1000019: Verified
Joshua Colp: Looks good to me, approved
diff --git a/CHANGES b/CHANGES
index 173a411..f1f5f42 100644
--- a/CHANGES
+++ b/CHANGES
@@ -205,6 +205,17 @@
--- Functionality changes from Asterisk 13.7.0 to Asterisk 13.8.0 ------------
------------------------------------------------------------------------------
+app_confbridge
+------------------
+ * Added CONFBRIDGE_INFO(muted,) for querying the muted conference state.
+
+ * Added Muted header to AMI ConfbridgeListRooms action response list events
+ to indicate the muted conference state.
+
+ * Added Muted column to CLI "confbridge list" output to indicate the muted
+ conference state and made the locked column a yes/no value instead of a
+ locked/unlocked value.
+
res_pjproject
------------------
* This module is the successor of res_pjsip_log_forwarder. As well as
@@ -215,7 +226,6 @@
res_pjsip
------------------
-
* Added new global option (regcontext) to pjsip. When set, Asterisk will
dynamically create and destroy a NoOp priority 1 extension
for a given endpoint who registers or unregisters with us.
diff --git a/apps/app_confbridge.c b/apps/app_confbridge.c
index 8ded510..18e192c 100644
--- a/apps/app_confbridge.c
+++ b/apps/app_confbridge.c
@@ -194,6 +194,9 @@
<enum name="marked">
<para>Get the number of marked users in the conference.</para>
</enum>
+ <enum name="muted">
+ <para>Determine if the conference is muted. (0 or 1)</para>
+ </enum>
<enum name="parties">
<para>Get the number of users in the conference.</para>
</enum>
@@ -2486,11 +2489,16 @@
if (a->argc == 2) {
struct ao2_iterator iter;
- ast_cli(a->fd, "Conference Bridge Name Users Marked Locked?\n");
- ast_cli(a->fd, "================================ ====== ====== ========\n");
+ ast_cli(a->fd, "Conference Bridge Name Users Marked Locked Muted\n");
+ ast_cli(a->fd, "================================ ====== ====== ====== =====\n");
iter = ao2_iterator_init(conference_bridges, 0);
while ((conference = ao2_iterator_next(&iter))) {
- ast_cli(a->fd, "%-32s %6u %6u %s\n", conference->name, conference->activeusers + conference->waitingusers, conference->markedusers, (conference->locked ? "locked" : "unlocked"));
+ ast_cli(a->fd, "%-32s %6u %6u %-6s %s\n",
+ conference->name,
+ conference->activeusers + conference->waitingusers,
+ conference->markedusers,
+ AST_CLI_YESNO(conference->locked),
+ AST_CLI_YESNO(conference->muted));
ao2_ref(conference, -1);
}
ao2_iterator_destroy(&iter);
@@ -2980,12 +2988,14 @@
"Parties: %u\r\n"
"Marked: %u\r\n"
"Locked: %s\r\n"
+ "Muted: %s\r\n"
"\r\n",
id_text,
conference->name,
conference->activeusers + conference->waitingusers,
conference->markedusers,
- conference->locked ? "Yes" : "No");
+ AST_YESNO(conference->locked),
+ AST_YESNO(conference->muted));
ao2_unlock(conference);
ao2_ref(conference, -1);
@@ -3256,30 +3266,31 @@
/* get the correct count for the type requested */
ao2_lock(conference);
- if (!strncasecmp(args.type, "parties", 7)) {
+ if (!strcasecmp(args.type, "parties")) {
AST_LIST_TRAVERSE(&conference->active_list, user, list) {
count++;
}
AST_LIST_TRAVERSE(&conference->waiting_list, user, list) {
count++;
}
- } else if (!strncasecmp(args.type, "admins", 6)) {
+ } else if (!strcasecmp(args.type, "admins")) {
AST_LIST_TRAVERSE(&conference->active_list, user, list) {
if (ast_test_flag(&user->u_profile, USER_OPT_ADMIN)) {
count++;
}
}
- } else if (!strncasecmp(args.type, "marked", 6)) {
+ } else if (!strcasecmp(args.type, "marked")) {
AST_LIST_TRAVERSE(&conference->active_list, user, list) {
if (ast_test_flag(&user->u_profile, USER_OPT_MARKEDUSER)) {
count++;
}
}
- } else if (!strncasecmp(args.type, "locked", 6)) {
+ } else if (!strcasecmp(args.type, "locked")) {
count = conference->locked;
+ } else if (!strcasecmp(args.type, "muted")) {
+ count = conference->muted;
} else {
- ast_log(LOG_ERROR, "Invalid keyword '%s' passed to CONFBRIDGE_INFO. Should be one of: "
- "parties, admins, marked, or locked.\n", args.type);
+ ast_log(LOG_ERROR, "Invalid keyword '%s' passed to CONFBRIDGE_INFO.\n", args.type);
}
snprintf(buf, len, "%d", count);
ao2_unlock(conference);
--
To view, visit https://gerrit.asterisk.org/2114
To unsubscribe, visit https://gerrit.asterisk.org/settings
Gerrit-MessageType: merged
Gerrit-Change-Id: I4076bd8ea1c23a3afd4f5833e9291b49a0c448b1
Gerrit-PatchSet: 1
Gerrit-Project: asterisk
Gerrit-Branch: master
Gerrit-Owner: Richard Mudgett <rmudgett at digium.com>
Gerrit-Reviewer: Anonymous Coward #1000019
Gerrit-Reviewer: Joshua Colp <jcolp at digium.com>
Gerrit-Reviewer: Kevin Harwell <kharwell at digium.com>
More information about the asterisk-commits
mailing list