commit - 8c14d397ba1d6ef01932448b290fd5ebfd80258d
commit + 09deb857cee6a57003ec37ea4df585eb7d180b47
blob - 6932af0fc559acd1126978a61b91efbf6a12dfcd
blob + 945af1b31d582f0cf6a7ef45417a09117cc09d9f
--- src/ngircd/conn.c
+++ src/ngircd/conn.c
#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 <assert.h>
} /* 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;
}
-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));
/* Mark link as "closing" */
Conn_OPTION_ADD( &My_Connections[Idx], CONN_ISCLOSING );
-
+
if (LogMsg)
txt = LogMsg;
else
(double)My_Connections[Idx].bytes_out / 1024);
}
#endif
-
/* Send ERROR to client (see RFC!) */
if (FwdMsg)
Conn_WriteStr(Idx, "ERROR :%s", FwdMsg);
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
* (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)
*/
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 ));