about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorAlexander Barton <alex@barton.de>2002-12-14 13:36:19 +0000
committerAlexander Barton <alex@barton.de>2002-12-14 13:36:19 +0000
commit25ca2b3cc5b5d92f43591bdb2f0076101fa2b79d (patch)
treefe10d2aaccc49ed3b950ace35140a3bd5f35eb80 /src
parentf7fe170a5ef7dda63b09f82d091542d66eff0689 (diff)
downloadngircd-25ca2b3cc5b5d92f43591bdb2f0076101fa2b79d.tar.gz
ngircd-25ca2b3cc5b5d92f43591bdb2f0076101fa2b79d.zip
- removed Conf_MaxPChannels and reverted to old behavior.
Diffstat (limited to 'src')
-rw-r--r--src/ngircd/conf.c15
-rw-r--r--src/ngircd/conf.h5
-rw-r--r--src/ngircd/irc-mode.c4
3 files changed, 4 insertions, 20 deletions
diff --git a/src/ngircd/conf.c b/src/ngircd/conf.c
index 2ff50361..e7215223 100644
--- a/src/ngircd/conf.c
+++ b/src/ngircd/conf.c
@@ -14,7 +14,7 @@
 
 #include "portab.h"
 
-static char UNUSED id[] = "$Id: conf.c,v 1.43 2002/12/13 17:32:33 alex Exp $";
+static char UNUSED id[] = "$Id: conf.c,v 1.44 2002/12/14 13:36:19 alex Exp $";
 
 #include "imp.h"
 #include <assert.h>
@@ -119,8 +119,6 @@ Conf_Test( VOID )
 	else printf( "  MaxConnections = -1\n" );
 	if( Conf_MaxJoins > 0 ) printf( "  MaxJoins = %d\n", Conf_MaxJoins );
 	else printf( "  MaxJoins = -1\n" );
-	if( Conf_MaxPChannels > 0 ) printf( "  MaxPChannels = %d\n", Conf_MaxPChannels );
-	else printf( "  MaxPChannels = -1\n" );
 	puts( "" );
 
 	for( i = 0; i < Conf_Oper_Count; i++ )
@@ -197,7 +195,6 @@ Set_Defaults( VOID )
 	
 	Conf_MaxConnections = -1;
 	Conf_MaxJoins = 10;
-	Conf_MaxPChannels = -1;
 } /* Set_Defaults */
 
 
@@ -494,16 +491,6 @@ Handle_GLOBAL( INT Line, CHAR *Var, CHAR *Arg )
 		Conf_MaxJoins = atoi( Arg );
 		return;
 	}
-	if( strcasecmp( Var, "MaxPChannels" ) == 0 )
-	{
-		/* Maximum number of persistent channels in the network. Values <= 0 are equal to "no limit". */
-#ifdef HAVE_ISDIGIT
-		if( ! isdigit( *Arg )) Config_Error( LOG_WARNING, "%s, line %d: Value of \"MaxPChannels\" is not a number!", NGIRCd_ConfFile, Line );
-		else
-#endif
-		Conf_MaxPChannels = atoi( Arg );
-		return;
-	}
 
 	Config_Error( LOG_ERR, "%s, line %d (section \"Global\"): Unknown variable \"%s\"!", NGIRCd_ConfFile, Line, Var );
 } /* Handle_GLOBAL */
diff --git a/src/ngircd/conf.h b/src/ngircd/conf.h
index 3c32faad..c4cf3383 100644
--- a/src/ngircd/conf.h
+++ b/src/ngircd/conf.h
@@ -8,7 +8,7 @@
  * (at your option) any later version.
  * Please read the file COPYING, README and AUTHORS for more information.
  *
- * $Id: conf.h,v 1.23 2002/12/13 17:32:33 alex Exp $
+ * $Id: conf.h,v 1.24 2002/12/14 13:36:19 alex Exp $
  *
  * Configuration management (header)
  */
@@ -102,9 +102,6 @@ GLOBAL LONG Conf_MaxConnections;
 /* Maximum number of channels a user can join */
 GLOBAL INT Conf_MaxJoins;
 
-/* Maximum number of persistent channels in the network */
-GLOBAL INT Conf_MaxPChannels;
-
 
 GLOBAL VOID Conf_Init PARAMS((VOID ));
 GLOBAL INT Conf_Test PARAMS((VOID ));
diff --git a/src/ngircd/irc-mode.c b/src/ngircd/irc-mode.c
index 6984409f..b17fc547 100644
--- a/src/ngircd/irc-mode.c
+++ b/src/ngircd/irc-mode.c
@@ -14,7 +14,7 @@
 
 #include "portab.h"
 
-static char UNUSED id[] = "$Id: irc-mode.c,v 1.18 2002/12/14 13:24:09 alex Exp $";
+static char UNUSED id[] = "$Id: irc-mode.c,v 1.19 2002/12/14 13:36:19 alex Exp $";
 
 #include "imp.h"
 #include <assert.h>
@@ -286,7 +286,7 @@ IRC_MODE( CLIENT *Client, REQUEST *Req )
 							break;
 						case 'P':
 							/* Persistent channel */
-							if( set && ( Conf_MaxPChannels > 0 ) && ( Channel_PCount( ) >= Conf_MaxPChannels ))
+							if( set && ( ! Client_OperByMe( Client )))
 							{
 								/* there are too many persistent channels in the network! */
 								ok = IRC_WriteStrClient( Client, ERR_NOPRIVILEGES_MSG, Client_ID( Client ));