summaryrefslogtreecommitdiff
path: root/main/dial.c
diff options
context:
space:
mode:
authorzuul <zuul@gerrit.asterisk.org>2016-06-06 07:27:30 -0500
committerGerrit Code Review <gerrit2@gerrit.digium.api>2016-06-06 07:27:30 -0500
commit93237209ebe05a849f8ae7a48d16b6f53676ea97 (patch)
treee0878bf6f813defbe671b9d0de83e7fecb6cc874 /main/dial.c
parentcda33854091eabf243dee228b92da3fcaa5bb5e3 (diff)
parent2de58c6d01a3ef1d6b31167833731eefcf844f0a (diff)
Merge "core/dial: New channel variable FORWARDERNAME" into 13
Diffstat (limited to 'main/dial.c')
-rw-r--r--main/dial.c14
1 files changed, 11 insertions, 3 deletions
diff --git a/main/dial.c b/main/dial.c
index fe592033e..ffa440546 100644
--- a/main/dial.c
+++ b/main/dial.c
@@ -411,16 +411,24 @@ int ast_dial_prerun(struct ast_dial *dial, struct ast_channel *chan, struct ast_
}
/*! \brief Helper function that does the beginning dialing per-appended channel */
-static int begin_dial_channel(struct ast_dial_channel *channel, struct ast_channel *chan, int async, const char *predial_string)
+static int begin_dial_channel(struct ast_dial_channel *channel, struct ast_channel *chan, int async, const char *predial_string, struct ast_channel *forwarder_chan)
{
char numsubst[AST_MAX_EXTENSION];
int res = 1;
+ char forwarder[AST_CHANNEL_NAME];
/* If no owner channel exists yet execute pre-run */
if (!channel->owner && begin_dial_prerun(channel, chan, NULL, predial_string)) {
return 0;
}
+ if (forwarder_chan) {
+ ast_copy_string(forwarder, ast_channel_name(forwarder_chan), sizeof(forwarder));
+ ast_channel_lock(channel->owner);
+ pbx_builtin_setvar_helper(channel->owner, "FORWARDERNAME", forwarder);
+ ast_channel_unlock(channel->owner);
+ }
+
/* Copy device string over */
ast_copy_string(numsubst, channel->device, sizeof(numsubst));
@@ -451,7 +459,7 @@ static int begin_dial(struct ast_dial *dial, struct ast_channel *chan, int async
/* Iterate through channel list, requesting and calling each one */
AST_LIST_LOCK(&dial->channels);
AST_LIST_TRAVERSE(&dial->channels, channel, list) {
- success += begin_dial_channel(channel, chan, async, predial_string);
+ success += begin_dial_channel(channel, chan, async, predial_string, NULL);
}
AST_LIST_UNLOCK(&dial->channels);
@@ -507,7 +515,7 @@ static int handle_call_forward(struct ast_dial *dial, struct ast_dial_channel *c
channel->owner = NULL;
/* Finally give it a go... send it out into the world */
- begin_dial_channel(channel, chan, chan ? 0 : 1, predial_string);
+ begin_dial_channel(channel, chan, chan ? 0 : 1, predial_string, original);
ast_channel_publish_dial_forward(chan, original, channel->owner, NULL, "CANCEL",
ast_channel_call_forward(original));