6253 F_GETLK doesn't always return lock owner
[illumos-gate.git] / usr / src / uts / common / netinet / tcp_debug.h
blob6b6f247d0e55bd99468f292381a450cd733b5d3c
1 /*
2 * Copyright (c) 1982, 1986 Regents of the University of California.
3 * All rights reserved. The Berkeley software License Agreement
4 * specifies the terms and conditions for redistribution.
5 */
7 #ifndef _NETINET_TCP_DEBUG_H
8 #define _NETINET_TCP_DEBUG_H
10 #pragma ident "%Z%%M% %I% %E% SMI"
11 /* tcp_debug.h 1.8 88/08/19 SMI; from UCB 7.1 6/5/86 */
13 #ifdef __cplusplus
14 extern "C" {
15 #endif
17 struct tcp_debug {
18 n_time td_time;
19 short td_act;
20 short td_ostate;
21 caddr_t td_tcb;
22 struct tcpiphdr td_ti;
23 short td_req;
24 struct tcpcb td_cb;
27 #define TA_INPUT 0
28 #define TA_OUTPUT 1
29 #define TA_USER 2
30 #define TA_RESPOND 3
31 #define TA_DROP 4
33 #ifdef TANAMES
34 char *tanames[] =
35 { "input", "output", "user", "respond", "drop" };
36 #endif
38 #define TCP_NDEBUG 100
40 #ifdef __cplusplus
42 #endif
44 #endif /* _NETINET_TCP_DEBUG_H */