#ifndef _IRCD_DOG3_FDLIST
#define _IRCD_DOG3_FDLIST
/* $Id: fdlist.h,v 1.1.1.1 2005/06/27 03:02:49 sheik Exp $ */
typedef struct fdstruct
{
int entry[MAXCONNECTIONS + 2];
int last_entry;
#ifdef USE_KQUEUE
int kqueue_fd;
#endif
} fdlist;
void addto_fdlist(int a, fdlist * b);
void delfrom_fdlist(int a, fdlist * b);
void init_fdlist(fdlist * b);
#endif /* _IRCD_DOG3_FDLIST */