Version 0.1.10 from FTP

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@386 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Mark Spencer
2001-11-10 02:55:10 +00:00
parent 1983a179c9
commit 54df359acc

View File

@@ -32,9 +32,11 @@ static char *descrip =
"extension). Options may also be included following a pipe symbol. The only\n" "extension). Options may also be included following a pipe symbol. The only\n"
"defined option at this time is 'skip', which causes the playback of the\n" "defined option at this time is 'skip', which causes the playback of the\n"
"message to be skipped if the channel is not in the 'up' state (i.e. it\n" "message to be skipped if the channel is not in the 'up' state (i.e. it\n"
"hasn't been answered yet. If 'skip' is not specified, the channel will be\n" "hasn't been answered yet. If 'skip' is specified, the application will\n"
"answered before the sound is played. Returns -1 if the channel was hung up,\n" "return immediately should the channel not be off hook. Otherwise, unless\n"
"or if the file does not exist. Returns 0 otherwise.\n"; "'noanswer' is specified, the channel channel will be answered before the sound\n"
"is played. Not all channels support playing messages while on hook. Returns -1\n"
"if the channel was hung up, or if the file does not exist. Returns 0 otherwise.\n";
STANDARD_LOCAL_USER; STANDARD_LOCAL_USER;
@@ -47,23 +49,26 @@ static int playback_exec(struct ast_channel *chan, void *data)
char tmp[256]; char tmp[256];
char *options; char *options;
int option_skip=0; int option_skip=0;
int option_noanswer = 0;
if (!data || !strlen((char *)data)) { if (!data || !strlen((char *)data)) {
ast_log(LOG_WARNING, "Playback requires an argument (filename)\n"); ast_log(LOG_WARNING, "Playback requires an argument (filename)\n");
return -1; return -1;
} }
strncpy(tmp, (char *)data, sizeof(tmp)); strncpy(tmp, (char *)data, sizeof(tmp)-1);
strtok(tmp, "|"); strtok(tmp, "|");
options = strtok(NULL, "|"); options = strtok(NULL, "|");
if (options && !strcasecmp(options, "skip")) if (options && !strcasecmp(options, "skip"))
option_skip = 1; option_skip = 1;
if (options && !strcasecmp(options, "noanswer"))
option_noanswer = 1;
LOCAL_USER_ADD(u); LOCAL_USER_ADD(u);
if (chan->state != AST_STATE_UP) { if (chan->state != AST_STATE_UP) {
if (option_skip) { if (option_skip) {
/* At the user's option, skip if the line is not up */ /* At the user's option, skip if the line is not up */
LOCAL_USER_REMOVE(u); LOCAL_USER_REMOVE(u);
return 0; return 0;
} else } else if (!option_noanswer)
/* Otherwise answer */ /* Otherwise answer unless we're supposed to send this while on-hook */
res = ast_answer(chan); res = ast_answer(chan);
} }
if (!res) { if (!res) {