From: Florian Westphal Date: Thu, 2 Feb 2006 21:00:21 +0000 (+0000) Subject: removed obsolete "int Conn_MaxFD" X-Git-Tag: rel-0-10-0-pre1~55 X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1249acfdba2ab619969c11042a130fc9ad9954de;hp=c8fb6a22584dae026557da9f7654cbc14e909da9;p=ngircd.git removed obsolete "int Conn_MaxFD" --- diff --git a/src/ngircd/conn.c b/src/ngircd/conn.c index 8f0675ce..bff3db61 100644 --- a/src/ngircd/conn.c +++ b/src/ngircd/conn.c @@ -17,7 +17,7 @@ #include "portab.h" #include "io.h" -static char UNUSED id[] = "$Id: conn.c,v 1.186 2005/12/09 09:26:55 fw Exp $"; +static char UNUSED id[] = "$Id: conn.c,v 1.187 2006/02/02 21:00:21 fw Exp $"; #include "imp.h" #include @@ -228,9 +228,6 @@ Conn_Init( void ) array_free( &My_Listeners ); - /* Groesster File-Descriptor fuer select() */ - Conn_MaxFD = 0; - /* Connection-Struktur initialisieren */ for( i = 0; i < Pool_Size; i++ ) Init_Conn_Struct( i ); @@ -462,7 +459,9 @@ Conn_Handler( void ) #endif /* Should the configuration be reloaded? */ - if( NGIRCd_SignalRehash ) NGIRCd_Rehash( ); + if (NGIRCd_SignalRehash) { + NGIRCd_Rehash( ); + } /* Check configured servers and established links */ Check_Servers( ); @@ -811,10 +810,10 @@ Conn_SyncServerStruct( void ) CONN_ID i; int c; - for( i = 0; i < Pool_Size; i++ ) - { + for( i = 0; i < Pool_Size; i++ ) { /* Established connection? */ - if( My_Connections[i].sock <= NONE ) continue; + if (My_Connections[i].sock < 0) + continue; /* Server connection? */ client = Client_GetFromConn( i ); @@ -1616,7 +1615,7 @@ out: n = Conf_GetServer( i ); assert(n > NONE ); if (n > NONE) { - Conf_Server[n].conn_id = NONE; + Conf_Server[n].conn_id = NONE; Init_Conn_Struct(i); } } diff --git a/src/ngircd/conn.h b/src/ngircd/conn.h index 307e5bb5..7d1c2e54 100644 --- a/src/ngircd/conn.h +++ b/src/ngircd/conn.h @@ -8,7 +8,7 @@ * (at your option) any later version. * Please read the file COPYING, README and AUTHORS for more information. * - * $Id: conn.h,v 1.39 2005/09/12 19:10:20 fw Exp $ + * $Id: conn.h,v 1.40 2006/02/02 21:00:22 fw Exp $ * * Connection management (header) */ @@ -93,8 +93,6 @@ GLOBAL void Conn_Close PARAMS(( CONN_ID Idx, char *LogMsg, char *FwdMsg, bool In GLOBAL void Conn_SyncServerStruct PARAMS(( void )); -GLOBAL int Conn_MaxFD; - #endif