xref: /original-bsd/sys/netinet/tcp_debug.h (revision 0b685140)
1 /*	tcp_debug.h	4.1	81/12/22	*/
2 
3 struct	tcp_debug {
4 	n_time	td_time;
5 	short	td_act;
6 	short	td_ostate;
7 	caddr_t	td_tcb;
8 	struct	tcpiphdr td_ti;
9 	short	td_req;
10 	struct	tcpcb td_cb;
11 };
12 
13 #define	TA_INPUT 	0
14 #define	TA_OUTPUT	1
15 #define	TA_USER		2
16 
17 #ifdef TANAMES
18 char	*tanames[] = { "input", "output", "user" };
19 #endif
20 
21 #define	TCP_NDEBUG 100
22 struct	tcp_debug tcp_debug[TCP_NDEBUG];
23 int	tcp_debx;
24