Deleted Added
full compact
nd6.c (79197) nd6.c (83130)
1/* $FreeBSD: head/sys/netinet6/nd6.c 79197 2001-07-04 11:27:24Z ume $ */
1/* $FreeBSD: head/sys/netinet6/nd6.c 83130 2001-09-06 02:40:43Z jlemon $ */
2/* $KAME: nd6.c,v 1.144 2001/05/24 07:44:00 itojun Exp $ */
3
4/*
5 * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
6 * All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions

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

178 * XXX: to detect this, we should choose a member that is never set
179 * before initialization of the ND structure itself. We formaly used
180 * the linkmtu member, which was not suitable because it could be
181 * initialized via "ifconfig mtu".
182 */
183 if (ND.basereachable)
184 return;
185
2/* $KAME: nd6.c,v 1.144 2001/05/24 07:44:00 itojun Exp $ */
3
4/*
5 * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
6 * All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions

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

178 * XXX: to detect this, we should choose a member that is never set
179 * before initialization of the ND structure itself. We formaly used
180 * the linkmtu member, which was not suitable because it could be
181 * initialized via "ifconfig mtu".
182 */
183 if (ND.basereachable)
184 return;
185
186 ND.linkmtu = ifindex2ifnet[ifp->if_index]->if_mtu;
186 ND.linkmtu = ifnet_byindex(ifp->if_index)->if_mtu;
187 ND.chlim = IPV6_DEFHLIM;
188 ND.basereachable = REACHABLE_TIME;
189 ND.reachable = ND_COMPUTE_RTIME(ND.basereachable);
190 ND.retrans = RETRANS_TIMER;
191 ND.receivedra = 0;
192 ND.flags = ND6_IFF_PERFORMNUD;
193 nd6_setmtu(ifp);
194#undef ND

--- 2031 unchanged lines hidden ---
187 ND.chlim = IPV6_DEFHLIM;
188 ND.basereachable = REACHABLE_TIME;
189 ND.reachable = ND_COMPUTE_RTIME(ND.basereachable);
190 ND.retrans = RETRANS_TIMER;
191 ND.receivedra = 0;
192 ND.flags = ND6_IFF_PERFORMNUD;
193 nd6_setmtu(ifp);
194#undef ND

--- 2031 unchanged lines hidden ---