Deleted Added
full compact
nd6.h (95023) nd6.h (118498)
1/* $FreeBSD: head/sys/netinet6/nd6.h 95023 2002-04-19 04:46:24Z suz $ */
1/* $FreeBSD: head/sys/netinet6/nd6.h 118498 2003-08-05 14:57:11Z ume $ */
2/* $KAME: nd6.h,v 1.76 2001/12/18 02:10:31 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

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

82 u_int8_t receivedra;
83 /* the following 3 members are for privacy extension for addrconf */
84 u_int8_t randomseed0[8]; /* upper 64 bits of MD5 digest */
85 u_int8_t randomseed1[8]; /* lower 64 bits (usually the EUI64 IFID) */
86 u_int8_t randomid[8]; /* current random ID */
87};
88
89#define ND6_IFF_PERFORMNUD 0x1
2/* $KAME: nd6.h,v 1.76 2001/12/18 02:10:31 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

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

82 u_int8_t receivedra;
83 /* the following 3 members are for privacy extension for addrconf */
84 u_int8_t randomseed0[8]; /* upper 64 bits of MD5 digest */
85 u_int8_t randomseed1[8]; /* lower 64 bits (usually the EUI64 IFID) */
86 u_int8_t randomid[8]; /* current random ID */
87};
88
89#define ND6_IFF_PERFORMNUD 0x1
90#define ND6_IFF_ACCEPT_RTADV 0x2
90
91struct in6_nbrinfo {
92 char ifname[IFNAMSIZ]; /* if name, e.g. "en0" */
93 struct in6_addr addr; /* IPv6 address of the neighbor */
94 long asked; /* number of queries already sent for this addr */
95 int isrouter; /* if it acts as a router */
96 int state; /* reachability state */
97 int expire; /* lifetime for NDP state transition */

--- 307 unchanged lines hidden ---
91
92struct in6_nbrinfo {
93 char ifname[IFNAMSIZ]; /* if name, e.g. "en0" */
94 struct in6_addr addr; /* IPv6 address of the neighbor */
95 long asked; /* number of queries already sent for this addr */
96 int isrouter; /* if it acts as a router */
97 int state; /* reachability state */
98 int expire; /* lifetime for NDP state transition */

--- 307 unchanged lines hidden ---