Re: [asterisk-users] Limit the number of users in a meetme conference?

2008-11-21 Thread Noah Miller
Hi Dan - 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

[asterisk-users] Limit the number of users in a meetme conference?

2008-11-20 Thread Noah Miller
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

Re: [asterisk-users] Limit the number of users in a meetme conference?

2008-11-20 Thread Danny Nicholas
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: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Noah Miller Sent:

Re: [asterisk-users] Limit the number of users in a meetme conference?

2008-11-20 Thread Singer X.J. Wang
Be careful there, the size of a int is not statically defined in c. The rules in the standard that applies to an int is as follows: An |int| must not be larger than a |long int| A |long int| must be at least 32 bits long int An |int| must be at least 16 bits long. So an int is at least 16

Re: [asterisk-users] Limit the number of users in a meetme conference?

2008-11-20 Thread Dan Austin
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