[asterisk-commits] mmichelson: branch 1.6.0 r131830 - in /branches/1.6.0: ./ apps/app_senddtmf.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Thu Jul 17 16:27:57 CDT 2008
Author: mmichelson
Date: Thu Jul 17 16:27:57 2008
New Revision: 131830
URL: http://svn.digium.com/view/asterisk?view=rev&rev=131830
Log:
Merged revisions 131824 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk
........
r131824 | mmichelson | 2008-07-17 16:26:41 -0500 (Thu, 17 Jul 2008) | 10 lines
Document that the duration of dtmf may be passed to
the SendDTMF application. Also correct the default
pause between digits.
(closes issue #13102)
Reported by: eliel
Patches:
app_senddtmf.c.patch uploaded by eliel (license 64)
........
Modified:
branches/1.6.0/ (props changed)
branches/1.6.0/apps/app_senddtmf.c
Propchange: branches/1.6.0/
------------------------------------------------------------------------------
Binary property 'trunk-merged' - no diff available.
Modified: branches/1.6.0/apps/app_senddtmf.c
URL: http://svn.digium.com/view/asterisk/branches/1.6.0/apps/app_senddtmf.c?view=diff&rev=131830&r1=131829&r2=131830
==============================================================================
--- branches/1.6.0/apps/app_senddtmf.c (original)
+++ branches/1.6.0/apps/app_senddtmf.c Thu Jul 17 16:27:57 2008
@@ -40,11 +40,13 @@
static char *synopsis = "Sends arbitrary DTMF digits";
static char *descrip =
-" SendDTMF(digits[,timeout_ms]): Sends DTMF digits on a channel. \n"
-" Accepted digits: 0-9, *#abcd, w (.5s pause)\n"
+" SendDTMF(digits[,[timeout_ms][,duration_ms]]): Sends DTMF digits on a channel. \n"
+" Accepted digits: 0-9, *#abcd, (default .25s pause between digits)\n"
" The application will either pass the assigned digits or terminate if it\n"
-" encounters an error.\n";
-
+" encounters an error.\n"
+" Optional Params: \n"
+" timeout_ms: pause between digits.\n"
+" duration_ms: duration of each digit.\n";
static int senddtmf_exec(struct ast_channel *chan, void *vdata)
{
More information about the asterisk-commits
mailing list