[Asterisk-cvs] asterisk/apps app_dial.c,1.159,1.160
markster at lists.digium.com
markster at lists.digium.com
Sun Jul 10 11:57:38 CDT 2005
Update of /usr/cvsroot/asterisk/apps
In directory localhost.localdomain:/tmp/cvs-serv14663/apps
Modified Files:
app_dial.c
Log Message:
Pass along proceeding and progress even when overlap mode is not on
Index: app_dial.c
===================================================================
RCS file: /usr/cvsroot/asterisk/apps/app_dial.c,v
retrieving revision 1.159
retrieving revision 1.160
diff -u -d -r1.159 -r1.160
--- app_dial.c 8 Jul 2005 19:10:39 -0000 1.159
+++ app_dial.c 10 Jul 2005 16:05:59 -0000 1.160
@@ -486,6 +486,12 @@
if (!ast_test_flag(outgoing, DIAL_RINGBACKONLY))
ast_indicate(in, AST_CONTROL_PROGRESS);
break;
+ case AST_CONTROL_PROCEEDING:
+ if (option_verbose > 2)
+ ast_verbose ( VERBOSE_PREFIX_3 "%s is proceeding passing it to %s\n", o->chan->name,in->name);
+ if (!ast_test_flag(outgoing, DIAL_RINGBACKONLY))
+ ast_indicate(in, AST_CONTROL_PROCEEDING);
+ break;
case AST_CONTROL_HOLD:
if (option_verbose > 2)
ast_verbose(VERBOSE_PREFIX_3 "Call on %s placed on hold\n", o->chan->name);
More information about the svn-commits
mailing list