Deleted Added
full compact
nd6.c (216277) nd6.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

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

25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 * SUCH DAMAGE.
28 *
29 * $KAME: nd6.c,v 1.144 2001/05/24 07:44:00 itojun Exp $
30 */
31
32#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

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

25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 * SUCH DAMAGE.
28 *
29 * $KAME: nd6.c,v 1.144 2001/05/24 07:44:00 itojun Exp $
30 */
31
32#include <sys/cdefs.h>
33__FBSDID("$FreeBSD: head/sys/netinet6/nd6.c 216277 2010-12-07 22:43:29Z bz $");
33__FBSDID("$FreeBSD: head/sys/netinet6/nd6.c 219819 2011-03-21 09:40:01Z jeff $");
34
35#include "opt_inet.h"
36#include "opt_inet6.h"
37
38#include <sys/param.h>
39#include <sys/systm.h>
40#include <sys/callout.h>
41#include <sys/malloc.h>

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

2095 case IFT_L2VLAN:
2096#endif
2097#ifdef IFT_IEEE80211
2098 case IFT_IEEE80211:
2099#endif
2100#ifdef IFT_CARP
2101 case IFT_CARP:
2102#endif
34
35#include "opt_inet.h"
36#include "opt_inet6.h"
37
38#include <sys/param.h>
39#include <sys/systm.h>
40#include <sys/callout.h>
41#include <sys/malloc.h>

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

2095 case IFT_L2VLAN:
2096#endif
2097#ifdef IFT_IEEE80211
2098 case IFT_IEEE80211:
2099#endif
2100#ifdef IFT_CARP
2101 case IFT_CARP:
2102#endif
2103 case IFT_INFINIBAND:
2103 case IFT_GIF: /* XXX need more cases? */
2104 case IFT_PPP:
2105 case IFT_TUNNEL:
2106 case IFT_BRIDGE:
2107 case IFT_PROPVIRTUAL:
2108 return (1);
2109 default:
2110 return (0);

--- 230 unchanged lines hidden ---
2104 case IFT_GIF: /* XXX need more cases? */
2105 case IFT_PPP:
2106 case IFT_TUNNEL:
2107 case IFT_BRIDGE:
2108 case IFT_PROPVIRTUAL:
2109 return (1);
2110 default:
2111 return (0);

--- 230 unchanged lines hidden ---