Deleted Added
full compact
in6_proto.c (189106) in6_proto.c (191672)
1/*-
2 * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
3 * 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

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

56 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
57 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
58 * SUCH DAMAGE.
59 *
60 * @(#)in_proto.c 8.1 (Berkeley) 6/10/93
61 */
62
63#include <sys/cdefs.h>
1/*-
2 * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
3 * 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

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

56 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
57 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
58 * SUCH DAMAGE.
59 *
60 * @(#)in_proto.c 8.1 (Berkeley) 6/10/93
61 */
62
63#include <sys/cdefs.h>
64__FBSDID("$FreeBSD: head/sys/netinet6/in6_proto.c 189106 2009-02-27 14:12:05Z bz $");
64__FBSDID("$FreeBSD: head/sys/netinet6/in6_proto.c 191672 2009-04-29 19:19:13Z bms $");
65
66#include "opt_inet.h"
67#include "opt_inet6.h"
68#include "opt_ipsec.h"
69#include "opt_ipstealth.h"
70#include "opt_route.h"
71#include "opt_carp.h"
72#include "opt_sctp.h"

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

231 .pr_protocol = IPPROTO_ICMPV6,
232 .pr_flags = PR_ATOMIC|PR_ADDR|PR_LASTHDR,
233 .pr_input = icmp6_input,
234 .pr_output = rip6_output,
235 .pr_ctlinput = rip6_ctlinput,
236 .pr_ctloutput = rip6_ctloutput,
237 .pr_init = icmp6_init,
238 .pr_fasttimo = icmp6_fasttimo,
65
66#include "opt_inet.h"
67#include "opt_inet6.h"
68#include "opt_ipsec.h"
69#include "opt_ipstealth.h"
70#include "opt_route.h"
71#include "opt_carp.h"
72#include "opt_sctp.h"

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

231 .pr_protocol = IPPROTO_ICMPV6,
232 .pr_flags = PR_ATOMIC|PR_ADDR|PR_LASTHDR,
233 .pr_input = icmp6_input,
234 .pr_output = rip6_output,
235 .pr_ctlinput = rip6_ctlinput,
236 .pr_ctloutput = rip6_ctloutput,
237 .pr_init = icmp6_init,
238 .pr_fasttimo = icmp6_fasttimo,
239 .pr_slowtimo = icmp6_slowtimo,
239 .pr_usrreqs = &rip6_usrreqs
240},
241{
242 .pr_type = SOCK_RAW,
243 .pr_domain = &inet6domain,
244 .pr_protocol = IPPROTO_DSTOPTS,
245 .pr_flags = PR_ATOMIC|PR_ADDR,
246 .pr_input = dest6_input,

--- 320 unchanged lines hidden ---
240 .pr_usrreqs = &rip6_usrreqs
241},
242{
243 .pr_type = SOCK_RAW,
244 .pr_domain = &inet6domain,
245 .pr_protocol = IPPROTO_DSTOPTS,
246 .pr_flags = PR_ATOMIC|PR_ADDR,
247 .pr_input = dest6_input,

--- 320 unchanged lines hidden ---