]> git.proxmox.com Git - mirror_frr.git/blame - zebra/misc_null.c
zebra: remove recursively derived static routes correctly
[mirror_frr.git] / zebra / misc_null.c
CommitLineData
46f4a4d2
PJ
1/*
2 * Copyright (C) 2006 Sun Microsystems, Inc.
3 *
4 * This file is part of Quagga.
5 *
6 * Quagga is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation; either version 2, or (at your option) any
9 * later version.
10 *
11 * Quagga is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with Quagga; see the file COPYING. If not, write to the Free
18 * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
19 * 02111-1307, USA.
20 */
21
a6974fef
AS
22#include <zebra.h>
23
24#include "prefix.h"
25#include "zebra/rtadv.h"
26#include "zebra/irdp.h"
7e4bcdc1 27#include "zebra/interface.h"
5adc2528 28#include "zebra/zebra_fpm.h"
457eb9af 29
327c4cdf
DV
30void rtadv_config_write (struct vty *vty, struct interface *ifp) { return; }
31void irdp_config_write (struct vty *vty, struct interface *ifp) { return; }
28feb0b3
DL
32#ifdef HAVE_PROC_NET_DEV
33void ifstat_update_proc (void) { return; }
34#endif
35#ifdef HAVE_NET_RT_IFLIST
36void ifstat_update_sysctl (void) { return; }
37#endif
5adc2528
AS
38
39void
40zfpm_trigger_update (struct route_node *rn, const char *reason)
41{
42 return;
43}