From: Mark Petersen Date: Wed, 8 Dec 2021 11:24:04 +0000 (+0100) Subject: app_queue.c: added DIALEDPEERNUMBER on outgoing channel X-Git-Tag: 18.10.0-rc1~51 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3d71bcd2f4e6cc0f05d08a3ffd691ed2b3be01d0;p=thirdparty%2Fasterisk.git app_queue.c: added DIALEDPEERNUMBER on outgoing channel added that we set DIALEDPEERNUMBER on the outgoing channels so it is avalible in b(content^extension^line) this add the same behaviour as Dial ASTERISK-29795 Change-Id: Icbc589ea2066f0c401a892bf478f6b2fd44e62f6 --- diff --git a/apps/app_queue.c b/apps/app_queue.c index acd0ace4f7..d03d9f0630 100644 --- a/apps/app_queue.c +++ b/apps/app_queue.c @@ -295,6 +295,9 @@ If the call was not answered by an agent this variable will be TRUE. + + Resource of the agent that was dialed set on the outbound channel. + @@ -4644,6 +4647,9 @@ static int ring_entry(struct queue_ent *qe, struct callattempt *tmp, int *busies ast_channel_unlock(tmp->chan); ast_channel_unlock(qe->chan); + /* location is tmp->interface where tech/ has been stripped, so it follow the same syntax as DIALEDPEERNUMBER in app_dial.c */ + pbx_builtin_setvar_helper(tmp->chan, "DIALEDPEERNUMBER", strlen(location) ? location : tmp->interface); + /* PREDIAL: Run gosub on the callee's channel */ if (qe->predial_callee) { ast_pre_call(tmp->chan, qe->predial_callee); diff --git a/doc/CHANGES-staging/app_queue_DIALEDPEERNUMBER.txt b/doc/CHANGES-staging/app_queue_DIALEDPEERNUMBER.txt new file mode 100644 index 0000000000..ef15e9e4ea --- /dev/null +++ b/doc/CHANGES-staging/app_queue_DIALEDPEERNUMBER.txt @@ -0,0 +1,6 @@ +Subject: app_queue +Subject: Applications + +added that we set DIALEDPEERNUMBER on the outgoing channels +so it is avalible in b(content^extension^line) +this add the same behaviour as Dial