diff options
| author | Mark Stapp <mjs@voltanet.io> | 2020-02-18 16:49:54 -0500 | 
|---|---|---|
| committer | Mark Stapp <mjs@voltanet.io> | 2020-02-18 16:49:54 -0500 | 
| commit | 0af3d691b2423abd5b91bffaddeae6d9c40dfb88 (patch) | |
| tree | e84e266080c20e2589dbb44cbcc095a415672883 /zebra/rtadv.c | |
| parent | 0d60f61f18549c72e7c4182c536ee2856ab77fe0 (diff) | |
zebra: fix missing rtadv stub functions
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>
Diffstat (limited to 'zebra/rtadv.c')
| -rw-r--r-- | zebra/rtadv.c | 21 | 
1 files changed, 21 insertions, 0 deletions
diff --git a/zebra/rtadv.c b/zebra/rtadv.c index e36af00b4e..829dcfcfd2 100644 --- a/zebra/rtadv.c +++ b/zebra/rtadv.c @@ -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 */  | 
