]> git.proxmox.com Git - mirror_frr.git/blame - ripd/rip_interface.h
bgpd: IPv6 session flapping with MP_REACH_NLRI and 0.0.0.0 in NEXT_HOP attribute
[mirror_frr.git] / ripd / rip_interface.h
CommitLineData
dc63bfd4 1/* RIP interface routines
2 *
3 * This file is part of Quagga
4 *
5 * Quagga is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License as published by the
7 * Free Software Foundation; either version 2, or (at your option) any
8 * later version.
9 *
10 * Quagga is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * General Public License for more details.
14 *
896014f4
DL
15 * You should have received a copy of the GNU General Public License along
16 * with this program; see the file COPYING; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
dc63bfd4 18 */
19
20#ifndef _QUAGGA_RIP_INTERFACE_H
21#define _QUAGGA_RIP_INTERFACE_H
22
ae7b826a
RW
23#include "zclient.h"
24
d62a17ae 25extern int rip_interface_down(int, struct zclient *, zebra_size_t, vrf_id_t);
26extern int rip_interface_up(int, struct zclient *, zebra_size_t, vrf_id_t);
27extern int rip_interface_add(int, struct zclient *, zebra_size_t, vrf_id_t);
28extern int rip_interface_delete(int, struct zclient *, zebra_size_t, vrf_id_t);
29extern int rip_interface_address_add(int, struct zclient *, zebra_size_t,
30 vrf_id_t);
31extern int rip_interface_address_delete(int, struct zclient *, zebra_size_t,
32 vrf_id_t);
121f9dee 33extern int rip_interface_vrf_update(ZAPI_CALLBACK_ARGS);
ae7b826a 34extern void rip_interface_sync(struct interface *ifp);
dc63bfd4 35
36#endif /* _QUAGGA_RIP_INTERFACE_H */