dect
/
asterisk
Archived
13
0
Fork 0

Merge anthm's senddtmf chagnes (bug #3193)

git-svn-id: http://svn.digium.com/svn/asterisk/trunk@4616 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
markster 2004-12-31 00:29:29 +00:00
parent 8a133dd0b5
commit 13793c5fcd
1 changed files with 16 additions and 7 deletions

View File

@ -31,7 +31,7 @@ static char *app = "SendDTMF";
static char *synopsis = "Sends arbitrary DTMF digits";
static char *descrip =
" SendDTMF(digits): Sends DTMF digits on a channel. \n"
" SendDTMF(digits[|timeout_ms]): Sends DTMF digits on a channel. \n"
" Accepted digits: 0-9, *#abcd\n"
" Returns 0 on success or -1 on a hangup.\n";
@ -43,15 +43,24 @@ static int senddtmf_exec(struct ast_channel *chan, void *data)
{
int res = 0;
struct localuser *u;
char *digits = data;
char *digits = NULL, *to = NULL;
int timeout = 250;
if (!digits || ast_strlen_zero(digits)) {
if (data && !ast_strlen_zero(data) && (digits = ast_strdupa((char *)data))) {
if((to = strchr(digits,'|'))) {
*to = '\0';
to++;
timeout = atoi(to);
}
LOCAL_USER_ADD(u);
if(timeout <= 0)
timeout = 250;
res = ast_dtmf_stream(chan,NULL,digits,timeout);
LOCAL_USER_REMOVE(u);
} else {
ast_log(LOG_WARNING, "SendDTMF requires an argument (digits or *#aAbBcCdD)\n");
return -1;
}
LOCAL_USER_ADD(u);
res = ast_dtmf_stream(chan,NULL,digits,250);
LOCAL_USER_REMOVE(u);
return res;
}