1
0
mirror of https://github.com/unrealircd/unrealircd.git synced 2026-07-09 01:03:13 +02:00
Files
unrealircd/include/fdlist.h
T
stskeeps 39b67b0258 3.1.6
2003-06-15 17:28:10 +00:00

31 lines
468 B
C

#ifndef _IRCD_DOG3_FDLIST
#define _IRCD_DOG3_FDLIST
/* $Id$ */
typedef struct fdstruct {
int entry[MAXCONNECTIONS + 2];
int last_entry;
} fdlist;
void addto_fdlist(int a, fdlist * b);
void delfrom_fdlist(int a, fdlist * b);
void init_fdlist(fdlist * b);
#ifndef NO_FDLIST
extern fdlist oper_fdlist;
#endif
#ifndef TRUE
#define TRUE 1
#endif
#define LOADCFREQ 5
#define LOADRECV 35
#define FDLISTCHKFREQ 2
#endif /*
* _IRCD_DOG3_FDLIST
*/