Deleted Added
full compact
in6_proto.c (270008) in6_proto.c (274175)
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 270008 2014-08-15 02:43:02Z kevlo $");
64__FBSDID("$FreeBSD: head/sys/netinet6/in6_proto.c 274175 2014-11-06 13:13:09Z melifaro $");
65
66#include "opt_inet.h"
67#include "opt_inet6.h"
68#include "opt_ipsec.h"
69#include "opt_ipstealth.h"
70#include "opt_sctp.h"
71#include "opt_mpath.h"
72#include "opt_route.h"

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

377 .dom_rtattach = in6_inithead,
378#endif
379#ifdef VIMAGE
380 .dom_rtdetach = in6_detachhead,
381#endif
382 .dom_rtoffset = offsetof(struct sockaddr_in6, sin6_addr) << 3,
383 .dom_maxrtkey = sizeof(struct sockaddr_in6),
384 .dom_ifattach = in6_domifattach,
65
66#include "opt_inet.h"
67#include "opt_inet6.h"
68#include "opt_ipsec.h"
69#include "opt_ipstealth.h"
70#include "opt_sctp.h"
71#include "opt_mpath.h"
72#include "opt_route.h"

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

377 .dom_rtattach = in6_inithead,
378#endif
379#ifdef VIMAGE
380 .dom_rtdetach = in6_detachhead,
381#endif
382 .dom_rtoffset = offsetof(struct sockaddr_in6, sin6_addr) << 3,
383 .dom_maxrtkey = sizeof(struct sockaddr_in6),
384 .dom_ifattach = in6_domifattach,
385 .dom_ifdetach = in6_domifdetach
385 .dom_ifdetach = in6_domifdetach,
386 .dom_ifmtu = in6_domifmtu
386};
387
388VNET_DOMAIN_SET(inet6);
389
390/*
391 * Internet configuration info
392 */
393#ifndef IPV6FORWARDING

--- 228 unchanged lines hidden ---
387};
388
389VNET_DOMAIN_SET(inet6);
390
391/*
392 * Internet configuration info
393 */
394#ifndef IPV6FORWARDING

--- 228 unchanged lines hidden ---