aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authormarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2005-07-10 16:05:59 +0000
committermarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2005-07-10 16:05:59 +0000
commitcd6f09bb95479166e8a62538b941e9e5daa3394e (patch)
tree3d06d2f8070acdb365390bf0bf6de2684b9c79f4 /apps
parent08be46197d3bffa1208e15602712dd250ca196b8 (diff)
Pass along proceeding and progress even when overlap mode is not on
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@6072 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'apps')
-rwxr-xr-xapps/app_dial.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/apps/app_dial.c b/apps/app_dial.c
index 177562071..07d07aaeb 100755
--- a/apps/app_dial.c
+++ b/apps/app_dial.c
@@ -486,6 +486,12 @@ static struct ast_channel *wait_for_answer(struct ast_channel *in, struct localu
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);