20.09.2011, 13:11
Well i have users who have more than 50 channels to join.
Is there a way to let them join more than 50 channels?
I remember that there was a bug with sbnc1.1. sbnc1.1 crashed if you joined more than 50 channels.
Did you fixed this by set MAXCHANS 50?
I hope there is a way to let them join more than 50 channels.
Thank you.
Best regards
30 min. later
ok ... i found it
Maybe you can add this into the sbnc.conf instead of hardcoded
Is there a way to let them join more than 50 channels?
I remember that there was a bug with sbnc1.1. sbnc1.1 crashed if you joined more than 50 channels.
Did you fixed this by set MAXCHANS 50?
I hope there is a way to let them join more than 50 channels.
Thank you.
Best regards
30 min. later
ok ... i found it
Code:
static struct reslimit_s {
const char *Resource;
unsigned int DefaultLimit;
} g_ResourceLimits[] = {
{ "channels", 300 },
{ "nicks", 5000 },
{ "bans", 100 },
{ "keys", 50 },
{ "clients", 5 },
{ NULL, 0 }
};