Deleted Added
full compact
in6.c (216022) in6.c (219819)
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.c 8.2 (Berkeley) 11/15/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.c 8.2 (Berkeley) 11/15/93
61 */
62
63#include <sys/cdefs.h>
64__FBSDID("$FreeBSD: head/sys/netinet6/in6.c 216022 2010-11-29 00:04:08Z bz $");
64__FBSDID("$FreeBSD: head/sys/netinet6/in6.c 219819 2011-03-21 09:40:01Z jeff $");
65
66#include "opt_compat.h"
67#include "opt_inet.h"
68#include "opt_inet6.h"
69
70#include <sys/param.h>
71#include <sys/errno.h>
72#include <sys/jail.h>

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

2293 case IFT_L2VLAN: /* ditto */
2294#endif
2295#ifdef IFT_IEEE80211
2296 case IFT_IEEE80211: /* ditto */
2297#endif
2298#ifdef IFT_MIP
2299 case IFT_MIP: /* ditto */
2300#endif
65
66#include "opt_compat.h"
67#include "opt_inet.h"
68#include "opt_inet6.h"
69
70#include <sys/param.h>
71#include <sys/errno.h>
72#include <sys/jail.h>

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

2293 case IFT_L2VLAN: /* ditto */
2294#endif
2295#ifdef IFT_IEEE80211
2296 case IFT_IEEE80211: /* ditto */
2297#endif
2298#ifdef IFT_MIP
2299 case IFT_MIP: /* ditto */
2300#endif
2301 case IFT_INFINIBAND:
2301 return (64);
2302 case IFT_FDDI: /* RFC2467 */
2303 return (64);
2304 case IFT_ISO88025: /* RFC2470 (IPv6 over Token Ring) */
2305 return (64);
2306 case IFT_PPP: /* RFC2472 */
2307 return (64);
2308 case IFT_ARCNET: /* RFC2497 */

--- 385 unchanged lines hidden ---
2302 return (64);
2303 case IFT_FDDI: /* RFC2467 */
2304 return (64);
2305 case IFT_ISO88025: /* RFC2470 (IPv6 over Token Ring) */
2306 return (64);
2307 case IFT_PPP: /* RFC2472 */
2308 return (64);
2309 case IFT_ARCNET: /* RFC2497 */

--- 385 unchanged lines hidden ---