diff options
Diffstat (limited to 'src/router.h')
-rw-r--r-- | src/router.h | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/src/router.h b/src/router.h index bdfe52c..0444da8 100644 --- a/src/router.h +++ b/src/router.h @@ -30,9 +30,11 @@ struct icmpv6_opt { (void*)(opt + opt->len) <= (void*)(end); opt += opt->len) -#define MaxRtrAdvInterval 1800 -#define MinRtrAdvInterval 3 +#define MaxInitialRtrAdvInterval 16 +#define MaxInitialRtAdvs 3 +#define MaxRtrAdvInterval 1800 +#define MinRtrAdvInterval 3 -#define ND_RA_FLAG_PROXY 0x4 -#define ND_RA_PREF_HIGH (1 << 3) -#define ND_RA_PREF_LOW (3 << 3) +#define ND_RA_FLAG_PROXY 0x4 +#define ND_RA_PREF_HIGH (1 << 3) +#define ND_RA_PREF_LOW (3 << 3) |