mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-12 15:45:18 +00:00
The QueueEntry event now has the uniqueid of the channel included.
(closes issue #13731) reported and patched by: caio1982 git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@150773 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
1
CHANGES
1
CHANGES
@@ -216,6 +216,7 @@ AMI - The manager (TCP/TLS/HTTP)
|
|||||||
--------------------------------
|
--------------------------------
|
||||||
* The Status command now takes an optional list of variables to display
|
* The Status command now takes an optional list of variables to display
|
||||||
along with channel status.
|
along with channel status.
|
||||||
|
* The QueueEntry event now also includes the channel's uniqueid
|
||||||
|
|
||||||
ODBC Changes
|
ODBC Changes
|
||||||
------------
|
------------
|
||||||
|
@@ -5746,12 +5746,13 @@ static int manager_queues_status(struct mansession *s, const struct message *m)
|
|||||||
"Queue: %s\r\n"
|
"Queue: %s\r\n"
|
||||||
"Position: %d\r\n"
|
"Position: %d\r\n"
|
||||||
"Channel: %s\r\n"
|
"Channel: %s\r\n"
|
||||||
|
"Uniqueid: %s\r\n"
|
||||||
"CallerIDNum: %s\r\n"
|
"CallerIDNum: %s\r\n"
|
||||||
"CallerIDName: %s\r\n"
|
"CallerIDName: %s\r\n"
|
||||||
"Wait: %ld\r\n"
|
"Wait: %ld\r\n"
|
||||||
"%s"
|
"%s"
|
||||||
"\r\n",
|
"\r\n",
|
||||||
q->name, pos++, qe->chan->name,
|
q->name, pos++, qe->chan->name, qe->chan->uniqueid,
|
||||||
S_OR(qe->chan->cid.cid_num, "unknown"),
|
S_OR(qe->chan->cid.cid_num, "unknown"),
|
||||||
S_OR(qe->chan->cid.cid_name, "unknown"),
|
S_OR(qe->chan->cid.cid_name, "unknown"),
|
||||||
(long) (now - qe->start), idText);
|
(long) (now - qe->start), idText);
|
||||||
|
@@ -125,6 +125,8 @@ Changes to manager version 1.1:
|
|||||||
If you call out to a subshell in Originate with the Application parameter,
|
If you call out to a subshell in Originate with the Application parameter,
|
||||||
you now also need the System privilege.
|
you now also need the System privilege.
|
||||||
|
|
||||||
|
- Event QueueEntry now also returns the Uniqueid field like other events from app_queue.
|
||||||
|
|
||||||
* NEW ACTIONS
|
* NEW ACTIONS
|
||||||
-------------
|
-------------
|
||||||
- Action: ModuleLoad
|
- Action: ModuleLoad
|
||||||
|
Reference in New Issue
Block a user