blob: d9dfbb7cc397695e0b75f44b58adabf84834c56d [file] [log] [blame]
pauldc63bfd2005-10-25 23:31:05 +00001/* 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 *
15 * You should have received a copy of the GNU General Public License
16 * along with Quagga; see the file COPYING. If not, write to the Free
17 * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
18 * 02111-1307, USA.
19 */
20
21#ifndef _QUAGGA_RIP_INTERFACE_H
22#define _QUAGGA_RIP_INTERFACE_H
23
Feng Luc99f3482014-10-16 09:52:36 +080024extern int rip_interface_down (int , struct zclient *, zebra_size_t,
25 vrf_id_t);
26extern int rip_interface_up (int , struct zclient *, zebra_size_t,
27 vrf_id_t);
28extern int rip_interface_add (int , struct zclient *, zebra_size_t,
29 vrf_id_t);
30extern int rip_interface_delete (int , struct zclient *, zebra_size_t,
31 vrf_id_t);
32extern int rip_interface_address_add (int , struct zclient *, zebra_size_t,
33 vrf_id_t);
34extern int rip_interface_address_delete (int , struct zclient *, zebra_size_t,
35 vrf_id_t);
pauldc63bfd2005-10-25 23:31:05 +000036
37#endif /* _QUAGGA_RIP_INTERFACE_H */