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:
BJ Weschke
2008-10-18 00:25:18 +00:00
parent d745aa4573
commit 7a8344bac6
3 changed files with 5 additions and 1 deletions

View File

@@ -5746,12 +5746,13 @@ static int manager_queues_status(struct mansession *s, const struct message *m)
"Queue: %s\r\n"
"Position: %d\r\n"
"Channel: %s\r\n"
"Uniqueid: %s\r\n"
"CallerIDNum: %s\r\n"
"CallerIDName: %s\r\n"
"Wait: %ld\r\n"
"%s"
"\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_name, "unknown"),
(long) (now - qe->start), idText);