/* This file contains information about connections and channels
 */

#define MAXCHANNELS	64	/* Only 64 Channels.  Channel 0 is reserved
				 * for Control Information */
#define INUSE		1	/* Connection in use */
#define NOTINUSE	0	/* Connection not in use */

#define MYBUFSIZ	2048	/* Number of bytes per 'packet', max */


typedef struct _connection {
    int	fd;			/* Socket File Descriptor */
    int	inuse;			/* Is this in use/ is it free (free == 0) */
} connection_t;

extern connection_t conn_list[MAXCHANNELS]; /* Our list of connections */
