#ifndef	NSESSIONS

/* Software options */
#define	SERVERS		1	/* Include TCP servers */
#define	TRACE		1	/* Include packet tracing code */
#define	RIP		1	/* Include RIP routing */
#define	HOPCHECK	1	/* IP path tracing command */
#define	NSESSIONS	10	/* Number of interactive clients */
#define DEFNSOCK	40	/* Default number of sockets */
#define	MTHRESH		8192	/* Default memory threshold */
#define	HEAPSIZE	200	/* Default heap size in kilobytes */
#define	NROWS		48	/* Number of rows on screen */
#define	NIBUFS		1	/* Number of interrupt buffers */
#define	IBUFSIZE	600	/* size of interrupt buffers */
#define	MAILBOX		1	/* mailbox feature */

/* Hardware configuration */
#undef	PC_EC		/*1	/* 3-Com 3C501 Ethernet controller */
#define	SLIP		1	/* Serial line IP */
#define	KISS		1	/* KISS TNC code */
#undef	HS		/*1	/* High speed (56kbps) modem driver */
#undef	HAPN		/*1	/* Hamilton Area Packet Network driver code */
#undef	EAGLE		/*1	/* Eagle card driver */
#undef	PACKET		/*1	/* FTP Software's Packet Driver interface */
#undef	PC100		/*1	/* PAC-COM PC-100 driver code */
#undef	APPLETALK	/*1	/* Appletalk interface (Macintosh) */
#define	NRS		1	/* NET/ROM async interface */
#define	NETROM		1	/* NET/ROM network support */
#undef	DRSI		/*1	/* DRSI PCPA slow-speed driver */
#undef	SCC		/*1	/* PE1CHL generic scc driver */
#define	ASY		1	/* Asynch driver code */
#undef	SLFP		/*1	/* SLFP packet driver class supported */
#define PPP		1	/* Point-to-Point Protocol support */
#define	VJCOMPRESS	1	/* Van Jacobson TCP header compression */

#if defined(NRS) && !defined(NETROM)
#define	NETROM		1	/* NRS implies NETROM */
#endif

#if (defined(HS)||defined(NETROM)||defined(KISS)||defined(HAPN)||defined(EAGLE)||defined(PC100))
#define	AX25		1		/* AX.25 subnet code */
#endif

/* KISS TNC, SLIP, NRS or PACKET implies ASY */
#if (defined(KISS) || defined(NRS) || defined(SLIP))
#undef	ASY
#define	ASY		1	/* Asynch driver code */
#endif

#if (defined(PC_EC) || defined(PACKET))
#define	ETHER	1		/* Generic Ethernet code */
#endif

#endif	/* NSESSIONS */

