mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-29 18:19:30 +00:00
Add user number (bug #2203)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3571 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -685,8 +685,9 @@ zapretry:
|
|||||||
manager_event(EVENT_FLAG_CALL, "MeetmeJoin",
|
manager_event(EVENT_FLAG_CALL, "MeetmeJoin",
|
||||||
"Channel: %s\r\n"
|
"Channel: %s\r\n"
|
||||||
"Uniqueid: %s\r\n"
|
"Uniqueid: %s\r\n"
|
||||||
"Meetme: %s\r\n",
|
"Meetme: %s\r\n"
|
||||||
chan->name, chan->uniqueid, conf->confno);
|
"Usernum: %i\r\n",
|
||||||
|
chan->name, chan->uniqueid, conf->confno, user->user_no);
|
||||||
|
|
||||||
if (!firstpass && !(confflags & CONFFLAG_MONITOR) && !(confflags & CONFFLAG_ADMIN)) {
|
if (!firstpass && !(confflags & CONFFLAG_MONITOR) && !(confflags & CONFFLAG_ADMIN)) {
|
||||||
firstpass = 1;
|
firstpass = 1;
|
||||||
@@ -956,8 +957,9 @@ outrun:
|
|||||||
manager_event(EVENT_FLAG_CALL, "MeetmeLeave",
|
manager_event(EVENT_FLAG_CALL, "MeetmeLeave",
|
||||||
"Channel: %s\r\n"
|
"Channel: %s\r\n"
|
||||||
"Uniqueid: %s\r\n"
|
"Uniqueid: %s\r\n"
|
||||||
"Meetme: %s\r\n",
|
"Meetme: %s\r\n"
|
||||||
chan->name, chan->uniqueid, conf->confno);
|
"Usernum: %i\r\n",
|
||||||
|
chan->name, chan->uniqueid, conf->confno, user->user_no);
|
||||||
prev = NULL;
|
prev = NULL;
|
||||||
conf->users--;
|
conf->users--;
|
||||||
if (confflags & CONFFLAG_ADMINEXIT)
|
if (confflags & CONFFLAG_ADMINEXIT)
|
||||||
|
Reference in New Issue
Block a user