mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-17 15:29:05 +00:00
core/dial: New channel variable FORWARDERNAME
Added a new channel variable FORWARDERNAME which indicates which channel was responsible for a forwarding requests received on dial attempt. Fixed a bug in the app_queue: FORWARD_CONTEXT is not used. ASTERISK-26059 #close Change-Id: I34e93e8c1b5e17776a77b319703c48c8ca48e7b2
This commit is contained in:
@@ -834,6 +834,7 @@ static void do_forward(struct chanlist *o, struct cause_args *num,
|
||||
struct ast_party_id *forced_clid, struct ast_party_id *stored_clid)
|
||||
{
|
||||
char tmpchan[256];
|
||||
char forwarder[AST_CHANNEL_NAME];
|
||||
struct ast_channel *original = o->chan;
|
||||
struct ast_channel *c = o->chan; /* the winner */
|
||||
struct ast_channel *in = num->chan; /* the input channel */
|
||||
@@ -842,6 +843,7 @@ static void do_forward(struct chanlist *o, struct cause_args *num,
|
||||
int cause;
|
||||
struct ast_party_caller caller;
|
||||
|
||||
ast_copy_string(forwarder, ast_channel_name(c), sizeof(forwarder));
|
||||
ast_copy_string(tmpchan, ast_channel_call_forward(c), sizeof(tmpchan));
|
||||
if ((stuff = strchr(tmpchan, '/'))) {
|
||||
*stuff++ = '\0';
|
||||
@@ -895,6 +897,7 @@ static void do_forward(struct chanlist *o, struct cause_args *num,
|
||||
ast_channel_lock_both(in, o->chan);
|
||||
ast_channel_inherit_variables(in, o->chan);
|
||||
ast_channel_datastore_inherit(in, o->chan);
|
||||
pbx_builtin_setvar_helper(o->chan, "FORWARDERNAME", forwarder);
|
||||
ast_max_forwards_decrement(o->chan);
|
||||
ast_channel_unlock(in);
|
||||
ast_channel_unlock(o->chan);
|
||||
|
||||
Reference in New Issue
Block a user