dect
/
asterisk
Archived
13
0
Fork 0

Allow moh class to be specified (bug #3199)

git-svn-id: http://svn.digium.com/svn/asterisk/trunk@4600 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
markster 2004-12-30 01:17:07 +00:00
parent 33b0c75e5a
commit 4e07a540f2
1 changed files with 24 additions and 2 deletions

View File

@ -67,7 +67,8 @@ static char *descrip =
" don't allow callerids from other extensions then the ones\n"
" that are assigned to you.\n"
" 'r' -- indicate ringing to the calling party, pass no audio until answered.\n"
" 'm' -- provide hold music to the calling party until answered.\n"
" 'm[(class)]' -- provide hold music to the calling party until answered (optionally\n"
" with the specified class.\n"
" 'M(x[^arg]) -- Executes the macro (x with ^ delim arg list) upon connect of the call.\n"
" Also, the macro can set the MACRO_RESULT variable to do the following:\n"
" -- ABORT - Hangup both legs of the call.\n"
@ -514,6 +515,7 @@ static int dial_exec(struct ast_channel *chan, void *data)
int play_to_caller=0,play_to_callee=0;
int playargs=0, sentringing=0, moh=0;
char *varname;
char *mohclass = NULL;
int vartype;
char *outbound_group = NULL;
char *macro_result = NULL, *macro_transfer_dest = NULL;
@ -703,6 +705,26 @@ static int dial_exec(struct ast_channel *chan, void *data)
hasmacro = 0;
}
}
/* Get music on hold class */
if ((mac = strstr(transfer, "m("))) {
mohclass = ast_strdupa(mac + 2);
mac++; /* Leave the "m" in the string */
while (*mac && (*mac != ')'))
*(mac++) = 'X';
if (*mac)
*mac = 'X';
else {
ast_log(LOG_WARNING, "Could not find music on hold class to use, assuming default.\n");
mohclass=NULL;
}
mac = strchr(macroname, ')');
if (mac)
*mac = '\0';
else {
ast_log(LOG_WARNING, "Music on hold class specified without trailing ')'\n");
mohclass = NULL;
}
}
/* Extract privacy info from transfer */
if ((s = strstr(transfer, "P("))) {
privacy = 1;
@ -970,7 +992,7 @@ static int dial_exec(struct ast_channel *chan, void *data)
strncpy(status, "NOANSWER", sizeof(status) - 1);
if (outgoing->musiconhold) {
moh=1;
ast_moh_start(chan, NULL);
ast_moh_start(chan, mohclass);
} else if (outgoing->ringbackonly) {
ast_indicate(chan, AST_CONTROL_RINGING);
sentringing++;