added basic ssl support to ircu
[ircu2.10.12-pk.git] / include / sys.h
index 7faef89e6bab2c8d6e2877e66b6b424c3deabfab..f3845e056eac57cf088d4301c7c2ba444c4b0b93 100644 (file)
  */
 #define MAXCLIENTS      (MAXCONNECTIONS-24)
 
-/* Define FD_SETSIZE to what we want before including sys/types.h on BSD */
-#if  defined(__FreeBSD__) || defined(__NetBSD__) || defined(__bsdi__)
-#if ((!defined(USE_POLL)) && (!defined(FD_SETSIZE)))
-#define FD_SETSIZE ((MAXCONNECTIONS)+4)
-#endif
-#endif
-
 #define IRCD_MAX(a, b)  ((a) > (b) ? (a) : (b))
 #define IRCD_MIN(a, b)  ((a) < (b) ? (a) : (b))