Deleted Added
full compact
udp_usrreq.c (185435) udp_usrreq.c (185571)
1/*-
2 * Copyright (c) 1982, 1986, 1988, 1990, 1993, 1995
3 * The Regents of the University of California.
4 * Copyright (c) 2008 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 * @(#)udp_usrreq.c 8.6 (Berkeley) 5/23/95
32 */
33
34#include <sys/cdefs.h>
1/*-
2 * Copyright (c) 1982, 1986, 1988, 1990, 1993, 1995
3 * The Regents of the University of California.
4 * Copyright (c) 2008 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 * @(#)udp_usrreq.c 8.6 (Berkeley) 5/23/95
32 */
33
34#include <sys/cdefs.h>
35__FBSDID("$FreeBSD: head/sys/netinet/udp_usrreq.c 185435 2008-11-29 14:32:14Z bz $");
35__FBSDID("$FreeBSD: head/sys/netinet/udp_usrreq.c 185571 2008-12-02 21:37:28Z bz $");
36
37#include "opt_ipfw.h"
38#include "opt_inet6.h"
39#include "opt_ipsec.h"
40#include "opt_mac.h"
41
42#include <sys/param.h>
43#include <sys/domain.h>

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

76#include <netinet/icmp_var.h>
77#include <netinet/ip_var.h>
78#include <netinet/ip_options.h>
79#ifdef INET6
80#include <netinet6/ip6_var.h>
81#endif
82#include <netinet/udp.h>
83#include <netinet/udp_var.h>
36
37#include "opt_ipfw.h"
38#include "opt_inet6.h"
39#include "opt_ipsec.h"
40#include "opt_mac.h"
41
42#include <sys/param.h>
43#include <sys/domain.h>

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

76#include <netinet/icmp_var.h>
77#include <netinet/ip_var.h>
78#include <netinet/ip_options.h>
79#ifdef INET6
80#include <netinet6/ip6_var.h>
81#endif
82#include <netinet/udp.h>
83#include <netinet/udp_var.h>
84#include <netinet/vinet.h>
84
85#ifdef IPSEC
86#include <netipsec/ipsec.h>
87#endif
88
89#include <machine/in_cksum.h>
90
91#include <security/mac/mac_framework.h>

--- 1203 unchanged lines hidden ---
85
86#ifdef IPSEC
87#include <netipsec/ipsec.h>
88#endif
89
90#include <machine/in_cksum.h>
91
92#include <security/mac/mac_framework.h>

--- 1203 unchanged lines hidden ---