From 233aab68a62d55a45c9f3113d66247ee8796e974 Mon Sep 17 00:00:00 2001 From: Russell Bryant Date: Thu, 20 Jul 2006 16:18:07 +0000 Subject: [PATCH] add a verbose message to the AGI command, STREAM FILE, similar to the verbose messages when using Playback, Background, or the GET DATA command (issue #7297, softins) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@38021 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- res/res_agi.c | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/res/res_agi.c b/res/res_agi.c index 1624e5455d..64c0390ebb 100644 --- a/res/res_agi.c +++ b/res/res_agi.c @@ -547,9 +547,14 @@ static int handle_streamfile(struct ast_channel *chan, AGI *agi, int argc, char struct ast_filestream *vfs; long sample_offset = 0; long max_length; + char *edigits = ""; if (argc < 4 || argc > 5) return RESULT_SHOWUSAGE; + + if (argv[3]) + edigits = argv[3]; + if ((argc > 4) && (sscanf(argv[4], "%ld", &sample_offset) != 1)) return RESULT_SHOWUSAGE; @@ -563,6 +568,9 @@ static int handle_streamfile(struct ast_channel *chan, AGI *agi, int argc, char if (vfs) ast_log(LOG_DEBUG, "Ooh, found a video stream, too\n"); + if (option_verbose > 2) + ast_verbose(VERBOSE_PREFIX_3 "Playing '%s' (escape_digits=%s) (sample_offset %ld)\n", argv[2], edigits, sample_offset); + ast_seekstream(fs, 0, SEEK_END); max_length = ast_tellstream(fs); ast_seekstream(fs, sample_offset, SEEK_SET); @@ -600,7 +608,7 @@ static int handle_getoption(struct ast_channel *chan, AGI *agi, int argc, char * long sample_offset = 0; long max_length; int timeout = 0; - char *edigits = NULL; + char *edigits = ""; if ( argc < 4 || argc > 5 ) return RESULT_SHOWUSAGE;