]> git.puffer.fish Git - matthieu/frr.git/commitdiff
zebra: fix missing rtadv stub functions
authorMark Stapp <mjs@voltanet.io>
Tue, 18 Feb 2020 21:49:54 +0000 (16:49 -0500)
committerMark Stapp <mjs@voltanet.io>
Tue, 18 Feb 2020 21:49:54 +0000 (16:49 -0500)
Add in a few missing stub route-advert functions; these are
needed to build frr with v6 route adverts disabled.

Signed-off-by: Mark Stapp <mjs@voltanet.io>
zebra/rtadv.c

index e36af00b4e7bb0318628bab343c61b15d04b2dfb..829dcfcfd2cde4ffb451ac714d4ee10feaf6a85b 100644 (file)
@@ -2479,4 +2479,25 @@ void rtadv_cmd_init(void)
 {
        /* Empty.*/;
 }
+
+void rtadv_add_prefix(struct zebra_if *zif, const struct prefix_ipv6 *p)
+{
+       /* Empty.*/;
+}
+
+void rtadv_delete_prefix(struct zebra_if *zif, const struct prefix *p)
+{
+       /* Empty.*/;
+}
+
+void rtadv_stop_ra(struct interface *ifp)
+{
+       /* Empty.*/;
+}
+
+void rtadv_stop_ra_all(void)
+{
+       /* Empty.*/;
+}
+
 #endif /* HAVE_RTADV */