aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authormarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2002-03-05 15:59:01 +0000
committermarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2002-03-05 15:59:01 +0000
commit979f047eb3f6598bb98635bd4600d47f2a57f801 (patch)
treeeb24eae822aac20c68f241c6d57dd51e6db930bb /apps
parent385223b5ca909aed7354e3ec7e95465ff1b31350 (diff)
Version 0.1.11 from FTP
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@418 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'apps')
-rwxr-xr-xapps/app_dial.c19
1 files changed, 19 insertions, 0 deletions
diff --git a/apps/app_dial.c b/apps/app_dial.c
index 5b24c6f5a..0fbfad004 100755
--- a/apps/app_dial.c
+++ b/apps/app_dial.c
@@ -313,15 +313,34 @@ static int dial_exec(struct ast_channel *chan, void *data)
cur = rest;
continue;
}
+ if (strlen(tmp->chan->call_forward)) {
+ if (option_verbose > 2)
+ ast_verbose(VERBOSE_PREFIX_3 "Forwarding call to '%s@%s'\n", tmp->chan->call_forward, tmp->chan->context);
+ /* Setup parameters */
+ strncpy(chan->exten, tmp->chan->call_forward, sizeof(chan->exten));
+ strncpy(chan->context, tmp->chan->context, sizeof(chan->context));
+ chan->priority = 0;
+ to = 0;
+ ast_hangup(tmp->chan);
+ free(tmp);
+ cur = rest;
+ break;
+ }
tmp->chan->appl = "AppDial";
tmp->chan->data = "(Outgoing Line)";
tmp->chan->whentohangup = 0;
if (tmp->chan->callerid)
free(tmp->chan->callerid);
+ if (tmp->chan->ani)
+ free(tmp->chan->ani);
if (chan->callerid)
tmp->chan->callerid = strdup(chan->callerid);
else
tmp->chan->callerid = NULL;
+ if (chan->ani)
+ tmp->chan->ani = strdup(chan->ani);
+ else
+ tmp->chan->ani = NULL;
/* Presense of ADSI CPE on outgoing channel follows ours */
tmp->chan->adsicpe = chan->adsicpe;
/* Place the call, but don't wait on the answer */