]> git.proxmox.com Git - mirror_frr.git/blame - isisd/isis_zebra.h
zebra, lib: fix the ZEBRA_INTERFACE_VRF_UPDATE zapi message
[mirror_frr.git] / isisd / isis_zebra.h
CommitLineData
eb5d44eb 1/*
d62a17ae 2 * IS-IS Rout(e)ing protocol - isis_zebra.h
eb5d44eb 3 *
4 * Copyright (C) 2001,2002 Sampo Saaristo
d62a17ae 5 * Tampere University of Technology
eb5d44eb 6 * Institute of Communications Engineering
7 *
d62a17ae 8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public Licenseas published by the Free
10 * Software Foundation; either version 2 of the License, or (at your option)
eb5d44eb 11 * any later version.
12 *
d62a17ae 13 * This program is distributed in the hope that it will be useful,but WITHOUT
14 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
eb5d44eb 16 * more details.
896014f4
DL
17 *
18 * You should have received a copy of the GNU General Public License along
19 * with this program; see the file COPYING; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
eb5d44eb 21 */
22#ifndef _ZEBRA_ISIS_ZEBRA_H
23#define _ZEBRA_ISIS_ZEBRA_H
24
25extern struct zclient *zclient;
26
4140ca4d 27void isis_zebra_init(struct thread_master *);
8d429559
DS
28void isis_zebra_stop(void);
29
ad103789
CF
30struct isis_route_info;
31
d62a17ae 32void isis_zebra_route_update(struct prefix *prefix,
321c1bbb 33 struct prefix_ipv6 *src_p,
d62a17ae 34 struct isis_route_info *route_info);
35int isis_distribute_list_update(int routetype);
113b1946
CF
36void isis_zebra_redistribute_set(afi_t afi, int type);
37void isis_zebra_redistribute_unset(afi_t afi, int type);
eb5d44eb 38
39#endif /* _ZEBRA_ISIS_ZEBRA_H */