aboutsummaryrefslogtreecommitdiffstats
path: root/apps/app_dial.c
diff options
context:
space:
mode:
authormartinp <martinp@f38db490-d61c-443f-a65b-d21fe96a405b>2003-05-12 19:25:20 +0000
committermartinp <martinp@f38db490-d61c-443f-a65b-d21fe96a405b>2003-05-12 19:25:20 +0000
commit07abfcd22895c077cb161a66d5430385c8a38318 (patch)
treefc630acc025e432bd7ab295043bee776e2e85547 /apps/app_dial.c
parentee006cd5b6272177ebfbb88c49900b823a1f742b (diff)
Add support for overlap dialing (sending). Now we have "full" overlap dialing support
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@1006 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'apps/app_dial.c')
-rwxr-xr-xapps/app_dial.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/apps/app_dial.c b/apps/app_dial.c
index a5bf3c39b..7eb6a7872 100755
--- a/apps/app_dial.c
+++ b/apps/app_dial.c
@@ -247,6 +247,11 @@ static struct ast_channel *wait_for_answer(struct ast_channel *in, struct localu
ringind++;
}
break;
+ case AST_CONTROL_PROGRESS:
+ if (option_verbose > 2)
+ ast_verbose ( VERBOSE_PREFIX_3 "%s is making progress passing it to %s\n", o->chan->name,in->name);
+ ast_indicate(in, AST_CONTROL_PROGRESS);
+ break;
case AST_CONTROL_OFFHOOK:
/* Ignore going off hook */
break;