[asterisk-commits] dvossel: trunk r236306 - in /trunk: CHANGES apps/app_queue.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Wed Dec 23 12:45:56 CST 2009
Author: dvossel
Date: Wed Dec 23 12:45:54 2009
New Revision: 236306
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=236306
Log:
update CHANGES to reflect new 'R' app_queue option plus a minor optimization to the feature patch
(issue #16384)
Modified:
trunk/CHANGES
trunk/apps/app_queue.c
Modified: trunk/CHANGES
URL: http://svnview.digium.com/svn/asterisk/trunk/CHANGES?view=diff&rev=236306&r1=236305&r2=236306
==============================================================================
--- trunk/CHANGES (original)
+++ trunk/CHANGES Wed Dec 23 12:45:54 2009
@@ -72,6 +72,10 @@
Applications
------------
+ * Added 'R' option to app_queue. This option stops moh and indicates ringing
+ to the caller when an Agent's phone is ringing. This can be used to indicate
+ to the caller that their call is about to be picked up, which is nice when
+ one has been on hold for an extened period of time.
* Added .m3u support for Mp3Player application.
* Added progress option to the app_dial D() option. When progress DTMF is
present, those values are sent immediately upon receiving a PROGRESS message
Modified: trunk/apps/app_queue.c
URL: http://svnview.digium.com/svn/asterisk/trunk/apps/app_queue.c?view=diff&rev=236306&r1=236305&r2=236306
==============================================================================
--- trunk/apps/app_queue.c (original)
+++ trunk/apps/app_queue.c Wed Dec 23 12:45:54 2009
@@ -5546,8 +5546,6 @@
if (ringing != 1 && args.options && (strchr(args.options, 'R'))) {
qe.ring_when_ringing = 1;
- } else {
- qe.ring_when_ringing = 0;
}
if (args.options && (strchr(args.options, 'c')))
More information about the asterisk-commits
mailing list