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:
Mark Spencer
2004-08-02 15:28:12 +00:00
parent 8b364485a0
commit 437f625786

View File

@@ -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)