Changeset View
Changeset View
Standalone View
Standalone View
sys/netinet6/nd6.h
| Show First 20 Lines • Show All 150 Lines • ▼ Show 20 Lines | |||||
| /* ND6 NA output flags */ | /* ND6 NA output flags */ | ||||
| #define ND6_NA_OPT_LLA 0x01 | #define ND6_NA_OPT_LLA 0x01 | ||||
| #define ND6_NA_CARP_MASTER 0x02 | #define ND6_NA_CARP_MASTER 0x02 | ||||
| /* ND6 queue flags */ | /* ND6 queue flags */ | ||||
| #define ND6_QUEUE_FLAG_NEWGUA 0x01 /* new global unicast address event */ | #define ND6_QUEUE_FLAG_NEWGUA 0x01 /* new global unicast address event */ | ||||
| #define ND6_QUEUE_FLAG_LLADDR 0x02 /* link-layer address change event */ | #define ND6_QUEUE_FLAG_LLADDR 0x02 /* link-layer address change event */ | ||||
| #define ND6_QUEUE_FLAG_ANYCAST 0x04 /* delay NA for anycast address */ | #define ND6_QUEUE_FLAG_ANYCAST 0x04 /* delay NA for anycast address */ | ||||
| #define ND6_QUEUE_FLAG_PROXY 0x08 /* delay NA for proxy address */ | |||||
| /* GRAND specific flags */ | /* GRAND specific flags */ | ||||
| #define ND6_QUEUE_GRAND_MASK (ND6_QUEUE_FLAG_NEWGUA|ND6_QUEUE_FLAG_LLADDR) | #define ND6_QUEUE_GRAND_MASK (ND6_QUEUE_FLAG_NEWGUA|ND6_QUEUE_FLAG_LLADDR) | ||||
| /* protocol constants */ | /* protocol constants */ | ||||
| #define MAX_RTR_SOLICITATION_DELAY 1 /* 1sec */ | #define MAX_RTR_SOLICITATION_DELAY 1 /* 1sec */ | ||||
| #define RTR_SOLICITATION_INTERVAL 4 /* 4sec */ | #define RTR_SOLICITATION_INTERVAL 4 /* 4sec */ | ||||
| #define MAX_RTR_SOLICITATIONS 3 | #define MAX_RTR_SOLICITATIONS 3 | ||||
| ▲ Show 20 Lines • Show All 247 Lines • Show Last 20 Lines | |||||