]> git.proxmox.com Git - mirror_frr.git/blob - zebra/misc_null.c
Zebra: Cleanup registered nexthops upon client exit
[mirror_frr.git] / zebra / misc_null.c
1 #include <zebra.h>
2
3 #include "prefix.h"
4 #include "zebra/rtadv.h"
5 #include "zebra/irdp.h"
6 #include "zebra/interface.h"
7 #include "zebra/zebra_fpm.h"
8
9 static void ifstat_update_proc (void) { return; }
10 #ifdef HAVE_SYS_WEAK_ALIAS_PRAGMA
11 #pragma weak rtadv_config_write = ifstat_update_proc
12 #pragma weak irdp_config_write = ifstat_update_proc
13 #pragma weak ifstat_update_sysctl = ifstat_update_proc
14 #else
15 void rtadv_config_write (struct vty *vty, struct interface *ifp) { return; }
16 void irdp_config_write (struct vty *vty, struct interface *ifp) { return; }
17 void ifstat_update_sysctl (void) { return; }
18 #endif
19
20 void
21 zfpm_trigger_update (struct route_node *rn, const char *reason)
22 {
23 return;
24 }