Deleted Added
full compact
nd6.c (227460) nd6.c (228571)
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 227460 2011-11-11 23:22:38Z qingli $");
33__FBSDID("$FreeBSD: head/sys/netinet6/nd6.c 228571 2011-12-16 12:16:56Z glebius $");
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>

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

2168 case IFT_FDDI:
2169 case IFT_IEEE1394:
2170#ifdef IFT_L2VLAN
2171 case IFT_L2VLAN:
2172#endif
2173#ifdef IFT_IEEE80211
2174 case IFT_IEEE80211:
2175#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>

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

2168 case IFT_FDDI:
2169 case IFT_IEEE1394:
2170#ifdef IFT_L2VLAN
2171 case IFT_L2VLAN:
2172#endif
2173#ifdef IFT_IEEE80211
2174 case IFT_IEEE80211:
2175#endif
2176#ifdef IFT_CARP
2177 case IFT_CARP:
2178#endif
2179 case IFT_INFINIBAND:
2180 case IFT_GIF: /* XXX need more cases? */
2181 case IFT_PPP:
2182 case IFT_TUNNEL:
2183 case IFT_BRIDGE:
2184 case IFT_PROPVIRTUAL:
2185 return (1);
2186 default:

--- 231 unchanged lines hidden ---
2176 case IFT_INFINIBAND:
2177 case IFT_GIF: /* XXX need more cases? */
2178 case IFT_PPP:
2179 case IFT_TUNNEL:
2180 case IFT_BRIDGE:
2181 case IFT_PROPVIRTUAL:
2182 return (1);
2183 default:

--- 231 unchanged lines hidden ---