]> arthur.barton.de Git - ngircd-alex.git/commitdiff
- maximum channels per user limit implemented.
authorAlexander Barton <alex@barton.de>
Fri, 13 Dec 2002 17:53:32 +0000 (17:53 +0000)
committerAlexander Barton <alex@barton.de>
Fri, 13 Dec 2002 17:53:32 +0000 (17:53 +0000)
src/ngircd/irc-channel.c

index 34dbe5e5dbd3c104da9c0be640fc9ec9ae8326e0..52e245190d40ec8eca2addb0edb816575589056a 100644 (file)
@@ -14,7 +14,7 @@
 
 #include "portab.h"
 
 
 #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 <assert.h>
 
 #include "imp.h"
 #include <assert.h>
@@ -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 "parse.h"
 #include "irc-info.h"
 #include "irc-write.h"
+#include "resolve.h"
+#include "conf.h"
 
 #include "exp.h"
 #include "irc-channel.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 );
 
                                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 );
 
                                is_banned = Lists_CheckBanned( target, chan );
                                is_invited = Lists_CheckInvited( target, chan );