]> git.proxmox.com Git - mirror_frr.git/blame - zebra/zapi_msg.h
zebra: optimize zserv_process_messages
[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"
31
32/*
33 * This is called to process inbound ZAPI messages.
34 *
35 * client
36 * the client datastructure
37 *
bf094f69 38 * msg
904e0d88 39 * the message
bf094f69 40 */
904e0d88 41extern void zserv_handle_commands(struct zserv *client, struct stream *msg);
bf094f69 42
8b1766b1
QY
43extern int zsend_vrf_add(struct zserv *zclient, struct zebra_vrf *zvrf);
44extern int zsend_vrf_delete(struct zserv *zclient, struct zebra_vrf *zvrf);
45extern int zsend_interface_add(struct zserv *zclient, struct interface *ifp);
46extern int zsend_interface_delete(struct zserv *zclient, struct interface *ifp);
47extern int zsend_interface_addresses(struct zserv *zclient,
48 struct interface *ifp);
49extern int zsend_interface_address(int cmd, struct zserv *zclient,
50 struct interface *ifp,
51 struct connected *ifc);
52extern void nbr_connected_add_ipv6(struct interface *ifp,
53 struct in6_addr *address);
54extern void nbr_connected_delete_ipv6(struct interface *ifp,
55 struct in6_addr *address);
56extern int zsend_interface_update(int cmd, struct zserv *client,
57 struct interface *ifp);
58extern int zsend_redistribute_route(int cmd, struct zserv *zclient,
59 struct prefix *p, struct prefix *src_p,
60 struct route_entry *re);
61extern int zsend_router_id_update(struct zserv *zclient, struct prefix *p,
62 vrf_id_t vrf_id);
63extern int zsend_interface_vrf_update(struct zserv *zclient,
64 struct interface *ifp, vrf_id_t vrf_id);
65extern int zsend_interface_link_params(struct zserv *zclient,
66 struct interface *ifp);
67extern int zsend_pw_update(struct zserv *client, struct zebra_pw *pw);
bf094f69
QY
68extern int zsend_route_notify_owner(struct route_entry *re, struct prefix *p,
69 enum zapi_route_notify_owner note);
70
71extern void zsend_rule_notify_owner(struct zebra_pbr_rule *rule,
72 enum zapi_rule_notify_owner note);
73extern void zsend_ipset_notify_owner(struct zebra_pbr_ipset *ipset,
74 enum zapi_ipset_notify_owner note);
75extern void
76zsend_ipset_entry_notify_owner(struct zebra_pbr_ipset_entry *ipset,
77 enum zapi_ipset_entry_notify_owner note);
78extern void zsend_iptable_notify_owner(struct zebra_pbr_iptable *iptable,
79 enum zapi_iptable_notify_owner note);
8b1766b1
QY
80extern void zserv_nexthop_num_warn(const char *caller, const struct prefix *p,
81 const unsigned int nexthop_num);