Skip to content
Snippets Groups Projects
Commit eb229648 authored by Mark Spencer's avatar Mark Spencer
Browse files

Merge meetmecount patch (with cleanups) bug #140

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1387 65c4cc65-6c06-0410-ace0-fbb531ad65f3
parent 913a5331
Branches
Tags
No related merge requests found
...@@ -55,9 +55,10 @@ static char *descrip = ...@@ -55,9 +55,10 @@ static char *descrip =
" 'q' -- quiet mode (don't play enter/leave sounds)\n"; " 'q' -- quiet mode (don't play enter/leave sounds)\n";
static char *descrip2 = static char *descrip2 =
" MeetMeCount(confno): Plays back the number of users in the specified MeetMe\n" " MeetMeCount(confno[|var]): Plays back the number of users in the specifiedi\n"
"conference. Returns 0 on success or -1 on a hangup. A ZAPTEL INTERFACE\n" "MeetMe conference. If var is specified, playback will be skipped and the value\n"
"MUST BE INSTALLED FOR CONFERENCING FUNCTIONALITY.\n"; "will be returned in the variable. Returns 0 on success or -1 on a hangup.\n"
"A ZAPTEL INTERFACE MUST BE INSTALLED FOR CONFERENCING FUNCTIONALITY.\n";
STANDARD_LOCAL_USER; STANDARD_LOCAL_USER;
...@@ -490,19 +491,33 @@ static int count_exec(struct ast_channel *chan, void *data) ...@@ -490,19 +491,33 @@ static int count_exec(struct ast_channel *chan, void *data)
int res = 0; int res = 0;
struct conf *conf; struct conf *conf;
int cnt; int cnt;
char *confnum,*localdata,*mhandle;
char val[80] = "0";
if (!data || !strlen(data)) { if (!data || !strlen(data)) {
ast_log(LOG_WARNING, "MeetMeCount requires an argument (conference number)\n"); ast_log(LOG_WARNING, "MeetMeCount requires an argument (conference number)\n");
return -1; return -1;
} }
mhandle = alloca(strlen(data) + 1);
localdata = mhandle; /* this is to make sure I have the original pointer for the free below */
LOCAL_USER_ADD(u); LOCAL_USER_ADD(u);
conf = find_conf(data, 0); strcpy(localdata,data);
confnum = strsep(&localdata,"|");
conf = find_conf(confnum, 0);
if (conf) if (conf)
cnt = conf->users; cnt = conf->users;
else else
cnt = 0; cnt = 0;
if (chan->_state != AST_STATE_UP)
ast_answer(chan); if(localdata && strlen(localdata)){
res = ast_say_number(chan, cnt, "", chan->language); /* have var so load it and exit */
snprintf(val,sizeof(val), "%i",cnt);
pbx_builtin_setvar_helper(chan, localdata,val);
}else{
if (chan->_state != AST_STATE_UP)
ast_answer(chan);
res = ast_say_number(chan, cnt, "", chan->language);
}
LOCAL_USER_REMOVE(u); LOCAL_USER_REMOVE(u);
return res; return res;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment