Revert -r430452 It needs to be redone for the next major AMI version change instead.

ASTERISK-24049


git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@430509 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Richard Mudgett
2015-01-12 18:09:27 +00:00
parent 9065488ddd
commit c7ea108e02
24 changed files with 51 additions and 43 deletions

View File

@@ -2532,7 +2532,7 @@ static int action_agents(struct mansession *s, const struct message *m)
} else {
id_text[0] = '\0';
}
astman_send_listack(s, m, "Agents will follow");
astman_send_listack(s, m, "Agents will follow", "start");
iter = ao2_iterator_init(agents, 0);
for (; (agent = ao2_iterator_next(&iter)); ao2_ref(agent, -1)) {

View File

@@ -2883,7 +2883,7 @@ static int action_confbridgelist(struct mansession *s, const struct message *m)
return 0;
}
astman_send_listack(s, m, "Confbridge user list will follow");
astman_send_listack(s, m, "Confbridge user list will follow", "start");
ao2_lock(conference);
AST_LIST_TRAVERSE(&conference->active_list, user, list) {
@@ -2920,7 +2920,7 @@ static int action_confbridgelistrooms(struct mansession *s, const struct message
return 0;
}
astman_send_listack(s, m, "Confbridge conferences will follow");
astman_send_listack(s, m, "Confbridge conferences will follow", "start");
/* Traverse the conference list */
iter = ao2_iterator_init(conference_bridges, 0);

View File

@@ -5530,7 +5530,7 @@ static int action_meetmelist(struct mansession *s, const struct message *m)
return 0;
}
astman_send_listack(s, m, "Meetme user list will follow");
astman_send_listack(s, m, "Meetme user list will follow", "start");
/* Find the right conference */
AST_LIST_LOCK(&confs);
@@ -5603,7 +5603,7 @@ static int action_meetmelistrooms(struct mansession *s, const struct message *m)
return 0;
}
astman_send_listack(s, m, "Meetme conferences will follow");
astman_send_listack(s, m, "Meetme conferences will follow", "start");
now = time(NULL);

View File

@@ -9472,7 +9472,7 @@ static int manager_queues_summary(struct mansession *s, const struct message *m)
struct ao2_iterator queue_iter;
struct ao2_iterator mem_iter;
astman_send_listack(s, m, "Queue summary will follow");
astman_send_listack(s, m, "Queue summary will follow", "start");
time(&now);
idText[0] = '\0';
if (!ast_strlen_zero(id)) {
@@ -9549,7 +9549,7 @@ static int manager_queues_status(struct mansession *s, const struct message *m)
struct ao2_iterator queue_iter;
struct ao2_iterator mem_iter;
astman_send_listack(s, m, "Queue status will follow");
astman_send_listack(s, m, "Queue status will follow", "start");
time(&now);
idText[0] = '\0';
if (!ast_strlen_zero(id)) {

View File

@@ -13065,7 +13065,7 @@ static int manager_list_voicemail_users(struct mansession *s, const struct messa
return RESULT_SUCCESS;
}
astman_send_listack(s, m, "Voicemail user list will follow");
astman_send_listack(s, m, "Voicemail user list will follow", "start");
AST_LIST_TRAVERSE(&users, vmu, list) {
char dirname[256];