Deleted Added
full compact
tcp_debug.h (128019) tcp_debug.h (133874)
1/*
2 * Copyright (c) 1982, 1986, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 13 unchanged lines hidden (view full) ---

22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 * SUCH DAMAGE.
28 *
29 * @(#)tcp_debug.h 8.1 (Berkeley) 6/10/93
1/*
2 * Copyright (c) 1982, 1986, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 13 unchanged lines hidden (view full) ---

22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 * SUCH DAMAGE.
28 *
29 * @(#)tcp_debug.h 8.1 (Berkeley) 6/10/93
30 * $FreeBSD: head/sys/netinet/tcp_debug.h 128019 2004-04-07 20:46:16Z imp $
30 * $FreeBSD: head/sys/netinet/tcp_debug.h 133874 2004-08-16 18:32:07Z rwatson $
31 */
32
33#ifndef _NETINET_TCP_DEBUG_H_
34#define _NETINET_TCP_DEBUG_H_
35
36struct tcp_debug {
37 n_time td_time;
38 short td_act;

--- 13 unchanged lines hidden (view full) ---

52#endif
53 struct tcphdr th;
54 } td_ti6;
55#define td_ip6buf td_ti6.ip6buf
56 short td_req;
57 struct tcpcb td_cb;
58};
59
31 */
32
33#ifndef _NETINET_TCP_DEBUG_H_
34#define _NETINET_TCP_DEBUG_H_
35
36struct tcp_debug {
37 n_time td_time;
38 short td_act;

--- 13 unchanged lines hidden (view full) ---

52#endif
53 struct tcphdr th;
54 } td_ti6;
55#define td_ip6buf td_ti6.ip6buf
56 short td_req;
57 struct tcpcb td_cb;
58};
59
60#define TA_INPUT 0
60#define TA_INPUT 0
61#define TA_OUTPUT 1
62#define TA_USER 2
63#define TA_RESPOND 3
64#define TA_DROP 4
65
66#ifdef TANAMES
67static const char *tanames[] =
68 { "input", "output", "user", "respond", "drop" };
69#endif
70
71#define TCP_NDEBUG 100
72
73#ifndef _KERNEL
74/* XXX common variables for broken applications. */
75struct tcp_debug tcp_debug[TCP_NDEBUG];
76int tcp_debx;
77#endif
78
79#endif /* !_NETINET_TCP_DEBUG_H_ */
61#define TA_OUTPUT 1
62#define TA_USER 2
63#define TA_RESPOND 3
64#define TA_DROP 4
65
66#ifdef TANAMES
67static const char *tanames[] =
68 { "input", "output", "user", "respond", "drop" };
69#endif
70
71#define TCP_NDEBUG 100
72
73#ifndef _KERNEL
74/* XXX common variables for broken applications. */
75struct tcp_debug tcp_debug[TCP_NDEBUG];
76int tcp_debx;
77#endif
78
79#endif /* !_NETINET_TCP_DEBUG_H_ */