Deleted Added
full compact
tcp_usrreq.c (178801) tcp_usrreq.c (181056)
1/*-
2 * Copyright (c) 1982, 1986, 1988, 1993
3 * The Regents of the University of California.
4 * Copyright (c) 2006-2007 Robert N. M. Watson
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions

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

27 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29 * SUCH DAMAGE.
30 *
31 * From: @(#)tcp_usrreq.c 8.2 (Berkeley) 1/3/94
32 */
33
34#include <sys/cdefs.h>
1/*-
2 * Copyright (c) 1982, 1986, 1988, 1993
3 * The Regents of the University of California.
4 * Copyright (c) 2006-2007 Robert N. M. Watson
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions

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

27 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29 * SUCH DAMAGE.
30 *
31 * From: @(#)tcp_usrreq.c 8.2 (Berkeley) 1/3/94
32 */
33
34#include <sys/cdefs.h>
35__FBSDID("$FreeBSD: head/sys/netinet/tcp_usrreq.c 178801 2008-05-05 23:13:27Z kmacy $");
35__FBSDID("$FreeBSD: head/sys/netinet/tcp_usrreq.c 181056 2008-07-31 15:10:09Z rpaulo $");
36
37#include "opt_ddb.h"
38#include "opt_inet.h"
39#include "opt_inet6.h"
40#include "opt_tcpdebug.h"
41
42#include <sys/param.h>
43#include <sys/systm.h>

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

1749 if (t_flags & TF_FORCEDATA) {
1750 db_printf("%sTF_FORCEDATA", comma ? ", " : "");
1751 comma = 1;
1752 }
1753 if (t_flags & TF_TSO) {
1754 db_printf("%sTF_TSO", comma ? ", " : "");
1755 comma = 1;
1756 }
36
37#include "opt_ddb.h"
38#include "opt_inet.h"
39#include "opt_inet6.h"
40#include "opt_tcpdebug.h"
41
42#include <sys/param.h>
43#include <sys/systm.h>

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

1749 if (t_flags & TF_FORCEDATA) {
1750 db_printf("%sTF_FORCEDATA", comma ? ", " : "");
1751 comma = 1;
1752 }
1753 if (t_flags & TF_TSO) {
1754 db_printf("%sTF_TSO", comma ? ", " : "");
1755 comma = 1;
1756 }
1757 if (t_flags & TF_ECN_PERMIT) {
1758 db_printf("%sTF_ECN_PERMIT", comma ? ", " : "");
1759 comma = 1;
1760 }
1757}
1758
1759static void
1760db_print_toobflags(char t_oobflags)
1761{
1762 int comma;
1763
1764 comma = 0;

--- 138 unchanged lines hidden ---
1761}
1762
1763static void
1764db_print_toobflags(char t_oobflags)
1765{
1766 int comma;
1767
1768 comma = 0;

--- 138 unchanged lines hidden ---