From: Alexander Barton Date: Fri, 13 Dec 2002 17:53:32 +0000 (+0000) Subject: - maximum channels per user limit implemented. X-Git-Tag: rel-0-6-0-pre1~33 X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?p=ngircd-alex.git;a=commitdiff_plain;h=5b8b3b83843d121b09b076876612e343d02c9d36;hp=9f74b95015fe5df2b723bb8a0d0bd13b953f8a20 - maximum channels per user limit implemented. --- diff --git a/src/ngircd/irc-channel.c b/src/ngircd/irc-channel.c index 34dbe5e5..52e24519 100644 --- a/src/ngircd/irc-channel.c +++ b/src/ngircd/irc-channel.c @@ -14,7 +14,7 @@ #include "portab.h" -static char UNUSED id[] = "$Id: irc-channel.c,v 1.18 2002/12/12 12:24:18 alex Exp $"; +static char UNUSED id[] = "$Id: irc-channel.c,v 1.19 2002/12/13 17:53:32 alex Exp $"; #include "imp.h" #include @@ -31,6 +31,8 @@ static char UNUSED id[] = "$Id: irc-channel.c,v 1.18 2002/12/12 12:24:18 alex Ex #include "parse.h" #include "irc-info.h" #include "irc-write.h" +#include "resolve.h" +#include "conf.h" #include "exp.h" #include "irc-channel.h" @@ -93,6 +95,17 @@ IRC_JOIN( CLIENT *Client, REQUEST *Req ) chan = Channel_Search( channame ); assert( chan != NULL ); + /* Test if the user has reached his maximum channel count */ + if( Client_Type( Client ) == CLIENT_USER ) + { + if(( Conf_MaxJoins > 0 ) && ( Channel_CountForUser( chan, Client ) > Conf_MaxJoins )) + { + IRC_WriteStrClient( Client, ERR_TOOMANYCHANNELS_MSG, Client_ID( Client ), channame ); + return CONNECTED; + } + } + + is_banned = Lists_CheckBanned( target, chan ); is_invited = Lists_CheckInvited( target, chan );