Noah Miller
2008-Nov-20 21:58 UTC
[asterisk-users] Limit the number of users in a meetme conference?
Hi - I found the "maxusers" defined in meetme.c, but I'm not sure how this value is set. Does anybody know if one can limit the number of users permitted in a meetme conference? I know there's MeetmeCount(), but I'd rather avoid the dialplan logic and just set maxusers instead. Thanks, Noah
Danny Nicholas
2008-Nov-20 22:20 UTC
[asterisk-users] Limit the number of users in a meetme conference?
In my meetme.c, users is defined as an int on line 328. This gives a possibility of 35768 people in a conference. If you cbanged that to a signed char, you would limit it to 127. -----Original Message----- From: asterisk-users-bounces at lists.digium.com [mailto:asterisk-users-bounces at lists.digium.com] On Behalf Of Noah Miller Sent: Thursday, November 20, 2008 3:59 PM To: Asterisk Users Mailing List - Non-Commercial Discussion Subject: [asterisk-users] Limit the number of users in a meetme conference? Hi - I found the "maxusers" defined in meetme.c, but I'm not sure how this value is set. Does anybody know if one can limit the number of users permitted in a meetme conference? I know there's MeetmeCount(), but I'd rather avoid the dialplan logic and just set maxusers instead. Thanks, Noah _______________________________________________ -- Bandwidth and Colocation Provided by http://www.api-digital.com -- asterisk-users mailing list To UNSUBSCRIBE or update options visit: http://lists.digium.com/mailman/listinfo/asterisk-users
Dan Austin
2008-Nov-20 22:40 UTC
[asterisk-users] Limit the number of users in a meetme conference?
Noah wrote:> I found the "maxusers" defined in meetme.c, but I'm > not sure how this value is set. Does anybody know > if one can limit the number of users permitted in a > meetme conference? I know there's MeetmeCount(), but > I'd rather avoid the dialplan logic and just set > maxusers instead.That feature is primarily used with RealTime conferences. The maxusers value is read from a database and enforced on RealTime enable conferences. This presumes you are looking at 1.6.X or Trunk code... Dan