mirror of
https://github.com/osmarks/ngircd.git
synced 2024-12-12 18:00:28 +00:00
remove FD_SETSIZE check (now in io_* functions)
This commit is contained in:
parent
2bf77fb0c3
commit
579fce1831
@ -14,7 +14,7 @@
|
|||||||
|
|
||||||
#include "portab.h"
|
#include "portab.h"
|
||||||
|
|
||||||
static char UNUSED id[] = "$Id: conf.c,v 1.77 2005/06/17 19:16:53 fw Exp $";
|
static char UNUSED id[] = "$Id: conf.c,v 1.78 2005/07/07 18:46:46 fw Exp $";
|
||||||
|
|
||||||
#include "imp.h"
|
#include "imp.h"
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
@ -981,16 +981,6 @@ Validate_Config( bool Configtest )
|
|||||||
/* No administrative information configured! */
|
/* No administrative information configured! */
|
||||||
Config_Error( LOG_WARNING, "No administrative information configured but required by RFC!" );
|
Config_Error( LOG_WARNING, "No administrative information configured but required by RFC!" );
|
||||||
}
|
}
|
||||||
#ifdef FD_SETSIZE
|
|
||||||
if(( Conf_MaxConnections > (long)FD_SETSIZE ) || ( Conf_MaxConnections < 1 ))
|
|
||||||
{
|
|
||||||
Conf_MaxConnections = (long)FD_SETSIZE;
|
|
||||||
Config_Error( LOG_ERR, "Setting MaxConnections to %ld, select() can't handle more file descriptors!", Conf_MaxConnections );
|
|
||||||
}
|
|
||||||
#else
|
|
||||||
Config_Error( LOG_WARN, "Don't know how many file descriptors select() can handle on this system, don't set MaxConnections too high!" );
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifdef DEBUG
|
#ifdef DEBUG
|
||||||
servers = servers_once = 0;
|
servers = servers_once = 0;
|
||||||
for( i = 0; i < MAX_SERVERS; i++ )
|
for( i = 0; i < MAX_SERVERS; i++ )
|
||||||
|
Loading…
Reference in New Issue
Block a user