]> git.proxmox.com Git - mirror_frr.git/blame - zebra/zapi_msg.h
zebra: kill zebra_memory.h, use MTYPE_STATIC
[mirror_frr.git] / zebra / zapi_msg.h
CommitLineData
bf094f69 1/*
d8647095 2 * Zebra API message creation & consumption.
bf094f69
QY
3 * Portions:
4 * Copyright (C) 1997-1999 Kunihiro Ishiguro
5 * Copyright (C) 2015-2018 Cumulus Networks, Inc.
6 * et al.
7 *
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by the Free
10 * Software Foundation; either version 2 of the License, or (at your option)
11 * any later version.
12 *
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
16 * more details.
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
21 */
22
23#include "lib/if.h"
24#include "lib/vrf.h"
25#include "lib/zclient.h"
26#include "lib/pbr.h"
27
28#include "zebra/rib.h"
29#include "zebra/zserv.h"
30#include "zebra/zebra_pbr.h"
43e52561 31#include "zebra/zebra_errors.h"
e11d7c96
EDP
32#include "zebra/label_manager.h"
33
bf094f69 34
51e94aa7
EDP
35#ifdef __cplusplus
36extern "C" {
37#endif
38
bf094f69
QY
39/*
40 * This is called to process inbound ZAPI messages.
41 *
42 * client
43 * the client datastructure
44 *
79b3664a
MS
45 * fifo
46 * a batch of messages
bf094f69 47 */
79b3664a
MS
48extern void zserv_handle_commands(struct zserv *client,
49 struct stream_fifo *fifo);
bf094f69 50
8b1766b1
QY
51extern int zsend_vrf_add(struct zserv *zclient, struct zebra_vrf *zvrf);
52extern int zsend_vrf_delete(struct zserv *zclient, struct zebra_vrf *zvrf);
53extern int zsend_interface_add(struct zserv *zclient, struct interface *ifp);
54extern int zsend_interface_delete(struct zserv *zclient, struct interface *ifp);
55extern int zsend_interface_addresses(struct zserv *zclient,
56 struct interface *ifp);
57extern int zsend_interface_address(int cmd, struct zserv *zclient,
58 struct interface *ifp,
59 struct connected *ifc);
60extern void nbr_connected_add_ipv6(struct interface *ifp,
61 struct in6_addr *address);
62extern void nbr_connected_delete_ipv6(struct interface *ifp,
63 struct in6_addr *address);
64extern int zsend_interface_update(int cmd, struct zserv *client,
65 struct interface *ifp);
66extern int zsend_redistribute_route(int cmd, struct zserv *zclient,
86391e56
MS
67 const struct prefix *p,
68 const struct prefix *src_p,
40f321c0
MS
69 const struct route_entry *re);
70
98a3fb0a
SM
71extern int zsend_router_id_update(struct zserv *zclient, afi_t afi,
72 struct prefix *p, vrf_id_t vrf_id);
8b1766b1
QY
73extern int zsend_interface_vrf_update(struct zserv *zclient,
74 struct interface *ifp, vrf_id_t vrf_id);
75extern int zsend_interface_link_params(struct zserv *zclient,
76 struct interface *ifp);
77extern int zsend_pw_update(struct zserv *client, struct zebra_pw *pw);
86391e56
MS
78extern int zsend_route_notify_owner(struct route_entry *re,
79 const struct prefix *p,
77b38a4a
S
80 enum zapi_route_notify_owner note,
81 afi_t afi, safi_t safi);
25779064 82extern int zsend_route_notify_owner_ctx(const struct zebra_dplane_ctx *ctx,
7cdb1a84 83 enum zapi_route_notify_owner note);
bf094f69 84
f62e5480 85extern void zsend_rule_notify_owner(const struct zebra_dplane_ctx *ctx,
bf094f69 86 enum zapi_rule_notify_owner note);
ef524230 87
5162e000 88extern void zsend_iptable_notify_owner(const struct zebra_dplane_ctx *ctx,
ef524230
PG
89 uint16_t note);
90extern void zsend_ipset_notify_owner(const struct zebra_dplane_ctx *ctx,
91 uint16_t note);
92extern void zsend_ipset_entry_notify_owner(const struct zebra_dplane_ctx *ctx,
93 uint16_t note);
786a9bd9 94extern bool zserv_nexthop_num_warn(const char *caller, const struct prefix *p,
8b1766b1 95 const unsigned int nexthop_num);
b120fe3b
DS
96
97extern void zsend_capabilities_all_clients(void);
e11d7c96 98extern int zsend_assign_label_chunk_response(struct zserv *client,
4cebdb9b 99 vrf_id_t vrf_id,
e11d7c96
EDP
100 struct label_manager_chunk *lmc);
101extern int zsend_label_manager_connect_response(struct zserv *client,
102 vrf_id_t vrf_id,
103 unsigned short result);
31f937fb
SM
104extern int zsend_sr_policy_notify_status(uint32_t color,
105 struct ipaddr *endpoint, char *name,
106 int status);
51e94aa7 107
581e797e
KS
108extern int zsend_client_close_notify(struct zserv *client,
109 struct zserv *closed_client);
110
ee94437e
MS
111int zsend_nhg_notify(uint16_t type, uint16_t instance, uint32_t session_id,
112 uint32_t id, enum zapi_nhg_notify_owner note);
113
224ccf29
DL
114extern void zapi_opaque_free(struct opaque *opaque);
115
51e94aa7
EDP
116#ifdef __cplusplus
117}
118#endif