router: speed up initial router advertisements
[oweals/odhcpd.git] / src / router.h
index bdfe52c43789e9203e4115a8ccac33daa5526db9..0444da8329a88c1b17ed27efb537f3992728ba87 100644 (file)
@@ -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)