1 /* 2 * 3 * Kernel support for NCP 4 * 5 * Mark Evans 1994 6 * 7 */ 8 9 #ifndef _NCP_H 10 #define _NCP_H 11 12 #include <linux/ncp.h> 13 14 struct ncp_info 15 { 16 unsigned short conn; /* connection number */ 17 unsigned char seq; /* sequence number */ 18 ipx_socket *ncp; /* ncp socket */ 19 ipx_socket *watchdog; /* watchdog socket */ 20 ipx_socket *mail; /* mail socket */ 21 }; 22 23 #define NCP_TIMEOUT (3*HZ) 24 #define MAX_TIMEOUT 15 25 26 #endif /* _NCP_H */