Deleted Added
full compact
in6_proto.c (174510) in6_proto.c (175162)
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 174510 2007-12-10 16:03:40Z obrien $");
64__FBSDID("$FreeBSD: head/sys/netinet6/in6_proto.c 175162 2008-01-08 19:08:58Z obrien $");
65
66#include "opt_inet.h"
67#include "opt_inet6.h"
68#include "opt_ipsec.h"
69#include "opt_ipstealth.h"
70#include "opt_carp.h"
71#include "opt_sctp.h"
72

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

334 .pr_flags = PR_ATOMIC|PR_ADDR,
335 .pr_input = rip6_input,
336 .pr_output = rip6_output,
337 .pr_ctloutput = rip6_ctloutput,
338 .pr_usrreqs = &rip6_usrreqs
339},
340};
341
65
66#include "opt_inet.h"
67#include "opt_inet6.h"
68#include "opt_ipsec.h"
69#include "opt_ipstealth.h"
70#include "opt_carp.h"
71#include "opt_sctp.h"
72

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

334 .pr_flags = PR_ATOMIC|PR_ADDR,
335 .pr_input = rip6_input,
336 .pr_output = rip6_output,
337 .pr_ctloutput = rip6_ctloutput,
338 .pr_usrreqs = &rip6_usrreqs
339},
340};
341
342extern int in6_inithead __P((void **, int));
342extern int in6_inithead(void **, int);
343
344struct domain inet6domain = {
345 .dom_family = AF_INET6,
346 .dom_name = "internet6",
347 .dom_protosw = (struct protosw *)inet6sw,
348 .dom_protoswNPROTOSW = (struct protosw *)
349 &inet6sw[sizeof(inet6sw)/sizeof(inet6sw[0])],
350 .dom_rtattach = in6_inithead,

--- 219 unchanged lines hidden ---
343
344struct domain inet6domain = {
345 .dom_family = AF_INET6,
346 .dom_name = "internet6",
347 .dom_protosw = (struct protosw *)inet6sw,
348 .dom_protoswNPROTOSW = (struct protosw *)
349 &inet6sw[sizeof(inet6sw)/sizeof(inet6sw[0])],
350 .dom_rtattach = in6_inithead,

--- 219 unchanged lines hidden ---