From: David Vossel Date: Tue, 17 Mar 2009 17:17:51 +0000 (+0000) Subject: Option to send DTMF when receiving PROGRESS status X-Git-Tag: 11.0.0-beta1~5228 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e559cae4ec230b4991079f5fe4a3302f5b682470;p=thirdparty%2Fasterisk.git Option to send DTMF when receiving PROGRESS status The D() option in app_dial is only able to send DTMF after the call has been answered. A progress option has been added to D() to allow DTMF to be sent upon receiving PROGRESS. This allows DTMF to be sent before the call is answered. (closes issue #12123) Reported by: VoipForces Patches: app_dial.c_patch_trunk_valid uploaded by VoipForces (license 419) dtmf_progress.patch uploaded by dvossel (license 671) Tested by: VoipForces, dvossel git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@182596 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/CHANGES b/CHANGES index 4ef792a60e..c6ba6557a7 100644 --- a/CHANGES +++ b/CHANGES @@ -128,6 +128,9 @@ Applications * Added ConfBridge dialplan application which does conference bridges without DAHDI. For information on its use, please see the output of "core show application ConfBridge" from the CLI. + * Added progress option to the app_dial D() option. When progress DTMF is + present, those values are sent immediatly upon receiving a PROGRESS message + regardless if the call has been answered or not. Miscellaneous ------------- diff --git a/apps/app_dial.c b/apps/app_dial.c index 3466f41d52..a245a8098b 100644 --- a/apps/app_dial.c +++ b/apps/app_dial.c @@ -109,11 +109,13 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")