]> git.proxmox.com Git - mirror_frr.git/blob - ospfd/ospf_zebra.h
zebra, lib: fix the ZEBRA_INTERFACE_VRF_UPDATE zapi message
[mirror_frr.git] / ospfd / ospf_zebra.h
1 /*
2 * Zebra connect library for OSPFd
3 * Copyright (C) 1997, 98, 99, 2000 Kunihiro Ishiguro, Toshiaki Takada
4 *
5 * This file is part of GNU Zebra.
6 *
7 * GNU Zebra is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the
9 * Free Software Foundation; either version 2, or (at your option) any
10 * later version.
11 *
12 * GNU Zebra is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License along
18 * with this program; see the file COPYING; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
20 */
21
22 #ifndef _ZEBRA_OSPF_ZEBRA_H
23 #define _ZEBRA_OSPF_ZEBRA_H
24
25 #include "vty.h"
26 #include "hook.h"
27
28 #define EXTERNAL_METRIC_TYPE_1 0
29 #define EXTERNAL_METRIC_TYPE_2 1
30
31 #define DEFAULT_ROUTE ZEBRA_ROUTE_MAX
32 #define DEFAULT_ROUTE_TYPE(T) ((T) == DEFAULT_ROUTE)
33
34 /* OSPF distance. */
35 struct ospf_distance {
36 /* Distance value for the IP source prefix. */
37 uint8_t distance;
38
39 /* Name of the access-list to be matched. */
40 char *access_list;
41 };
42
43 /* Prototypes */
44 extern void ospf_zebra_add(struct ospf *ospf, struct prefix_ipv4 *,
45 struct ospf_route *);
46 extern void ospf_zebra_delete(struct ospf *ospf, struct prefix_ipv4 *,
47 struct ospf_route *);
48
49 extern void ospf_zebra_add_discard(struct ospf *ospf, struct prefix_ipv4 *);
50 extern void ospf_zebra_delete_discard(struct ospf *ospf, struct prefix_ipv4 *);
51
52 extern int ospf_redistribute_check(struct ospf *, struct external_info *,
53 int *);
54 extern int ospf_distribute_check_connected(struct ospf *,
55 struct external_info *);
56 extern void ospf_distribute_list_update(struct ospf *, int, unsigned short);
57
58 extern int ospf_is_type_redistributed(struct ospf *, int, unsigned short);
59 extern void ospf_distance_reset(struct ospf *);
60 extern uint8_t ospf_distance_apply(struct ospf *ospf, struct prefix_ipv4 *,
61 struct ospf_route *);
62 extern struct ospf_external *ospf_external_lookup(struct ospf *, uint8_t,
63 unsigned short);
64 extern struct ospf_external *ospf_external_add(struct ospf *, uint8_t,
65 unsigned short);
66 extern void ospf_external_del(struct ospf *, uint8_t, unsigned short);
67 extern struct ospf_redist *ospf_redist_lookup(struct ospf *, uint8_t,
68 unsigned short);
69 extern struct ospf_redist *ospf_redist_add(struct ospf *, uint8_t,
70 unsigned short);
71 extern void ospf_redist_del(struct ospf *, uint8_t, unsigned short);
72
73
74 extern int ospf_redistribute_set(struct ospf *, int, unsigned short, int, int);
75 extern int ospf_redistribute_unset(struct ospf *, int, unsigned short);
76 extern int ospf_redistribute_default_set(struct ospf *, int, int, int);
77 extern int ospf_redistribute_default_unset(struct ospf *);
78 extern int ospf_distribute_list_out_set(struct ospf *, int, const char *);
79 extern int ospf_distribute_list_out_unset(struct ospf *, int, const char *);
80 extern void ospf_routemap_set(struct ospf_redist *, const char *);
81 extern void ospf_routemap_unset(struct ospf_redist *);
82 extern int ospf_distance_set(struct vty *, struct ospf *, const char *,
83 const char *, const char *);
84 extern int ospf_distance_unset(struct vty *, struct ospf *, const char *,
85 const char *, const char *);
86 extern void ospf_zebra_init(struct thread_master *, unsigned short);
87 extern void ospf_zebra_vrf_register(struct ospf *ospf);
88 extern void ospf_zebra_vrf_deregister(struct ospf *ospf);
89
90 DECLARE_HOOK(ospf_if_update, (struct interface * ifp), (ifp))
91 DECLARE_HOOK(ospf_if_delete, (struct interface * ifp), (ifp))
92
93 #endif /* _ZEBRA_OSPF_ZEBRA_H */