commit 09deb857cee6a57003ec37ea4df585eb7d180b47 from: Florian Westphal date: Wed Apr 04 21:52:12 2007 UTC - change return type of Conn_InitListeners to unsigned - remove minor whitespace damage commit - 8c14d397ba1d6ef01932448b290fd5ebfd80258d commit + 09deb857cee6a57003ec37ea4df585eb7d180b47 blob - 6932af0fc559acd1126978a61b91efbf6a12dfcd blob + 945af1b31d582f0cf6a7ef45417a09117cc09d9f --- src/ngircd/conn.c +++ src/ngircd/conn.c @@ -17,7 +17,7 @@ #include "portab.h" #include "io.h" -static char UNUSED id[] = "$Id: conn.c,v 1.203 2007/02/21 11:06:06 fw Exp $"; +static char UNUSED id[] = "$Id: conn.c,v 1.204 2007/04/04 21:52:12 fw Exp $"; #include "imp.h" #include @@ -259,10 +259,10 @@ Conn_Exit( void ) } /* Conn_Exit */ -static int +static unsigned int ports_initlisteners(array *a, void (*func)(int,short)) { - int created = 0; + unsigned int created = 0; size_t len; int fd; UINT16 *port; @@ -290,12 +290,12 @@ ports_initlisteners(array *a, void (*func)(int,short)) } -GLOBAL int +GLOBAL unsigned int Conn_InitListeners( void ) { /* Initialize ports on which the server should accept connections */ - int created; + unsigned int created; if (!io_library_init(CONNECTION_POOL)) { Log(LOG_EMERG, "Cannot initialize IO routines: %s", strerror(errno)); @@ -692,7 +692,7 @@ Conn_Close( CONN_ID Idx, char *LogMsg, char *FwdMsg, b /* Mark link as "closing" */ Conn_OPTION_ADD( &My_Connections[Idx], CONN_ISCLOSING ); - + if (LogMsg) txt = LogMsg; else @@ -720,7 +720,6 @@ Conn_Close( CONN_ID Idx, char *LogMsg, char *FwdMsg, b (double)My_Connections[Idx].bytes_out / 1024); } #endif - /* Send ERROR to client (see RFC!) */ if (FwdMsg) Conn_WriteStr(Idx, "ERROR :%s", FwdMsg); @@ -1632,9 +1631,9 @@ Conn_GetClient( CONN_ID Idx ) assert( Idx >= 0 ); c = array_get(&My_ConnArray, sizeof (CONNECTION), (size_t)Idx); - + assert(c != NULL); - + return c ? c->client : NULL; } blob - b1e158e0266a6771b89accac0cde5e66a0c8df1a blob + 9a794a1e2236cf351817816c75149aea57a63cab --- src/ngircd/conn.h +++ 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.42 2006/05/10 21:24:01 alex Exp $ + * $Id: conn.h,v 1.43 2007/04/04 21:52:12 fw Exp $ * * Connection management (header) */ @@ -83,7 +83,7 @@ GLOBAL long WCounter; GLOBAL void Conn_Init PARAMS((void )); GLOBAL void Conn_Exit PARAMS(( void )); -GLOBAL int Conn_InitListeners PARAMS(( void )); +GLOBAL unsigned int Conn_InitListeners PARAMS(( void )); GLOBAL void Conn_ExitListeners PARAMS(( void )); GLOBAL void Conn_Handler PARAMS(( void ));