]> git.proxmox.com Git - mirror_frr.git/blob - zebra/rt_netlink.h
Merge pull request #3416 from mjstapp/dplane_mpls
[mirror_frr.git] / zebra / rt_netlink.h
1 /* Header file exported by rt_netlink.c to zebra.
2 * Copyright (C) 1997, 98, 99 Kunihiro Ishiguro
3 *
4 * This file is part of GNU Zebra.
5 *
6 * GNU Zebra 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 * GNU Zebra 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 along
17 * with this program; see the file COPYING; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20
21 #ifndef _ZEBRA_RT_NETLINK_H
22 #define _ZEBRA_RT_NETLINK_H
23
24 #ifdef HAVE_NETLINK
25
26 #include "zebra/zebra_mpls.h"
27 #include "zebra/zebra_dplane.h"
28
29 #define NL_DEFAULT_ROUTE_METRIC 20
30
31 /*
32 * Additional protocol strings to push into routes
33 * If we add anything new here please make sure
34 * to update:
35 * zebra2proto Function
36 * proto2zebra Function
37 * is_selfroute Function
38 * tools/frr To flush the route upon exit
39 *
40 * Finally update this file to allow iproute2 to
41 * know about this new route.
42 * tools/etc/iproute2/rt_protos.d
43 */
44 #define RTPROT_BGP 186
45 #define RTPROT_ISIS 187
46 #define RTPROT_OSPF 188
47 #define RTPROT_RIP 189
48 #define RTPROT_RIPNG 190
49 #if !defined(RTPROT_BABEL)
50 #define RTPROT_BABEL 42
51 #endif
52 #define RTPROT_NHRP 191
53 #define RTPROT_EIGRP 192
54 #define RTPROT_LDP 193
55 #define RTPROT_SHARP 194
56 #define RTPROT_PBR 195
57 #define RTPROT_ZSTATIC 196
58 #define RTPROT_OPENFABRIC 197
59
60 void rt_netlink_init(void);
61
62 /* MPLS label forwarding table change, using dataplane context information. */
63 extern int netlink_mpls_multipath(int cmd, struct zebra_dplane_ctx *ctx);
64
65 extern int netlink_route_change(struct nlmsghdr *h, ns_id_t ns_id, int startup);
66 extern int netlink_route_read(struct zebra_ns *zns);
67
68 extern int netlink_neigh_change(struct nlmsghdr *h, ns_id_t ns_id);
69 extern int netlink_macfdb_read(struct zebra_ns *zns);
70 extern int netlink_macfdb_read_for_bridge(struct zebra_ns *zns,
71 struct interface *ifp,
72 struct interface *br_if);
73 extern int netlink_neigh_read(struct zebra_ns *zns);
74 extern int netlink_neigh_read_for_vlan(struct zebra_ns *zns,
75 struct interface *vlan_if);
76
77 #endif /* HAVE_NETLINK */
78
79 #endif /* _ZEBRA_RT_NETLINK_H */