]> git.proxmox.com Git - mirror_frr.git/blob - zebra/dpdk/zebra_dplane_dpdk.h
doc: Add `show ipv6 rpf X:X::X:X` command to docs
[mirror_frr.git] / zebra / dpdk / zebra_dplane_dpdk.h
1 /*
2 * Zebra dataplane plugin for DPDK based hw offload
3 *
4 * Copyright (C) 2021 Nvidia
5 * Anuradha Karuppiah
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program 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_DPLANE_DPDK_H
23 #define _ZEBRA_DPLANE_DPDK_H
24
25 #include <zebra.h>
26
27
28 #define ZD_DPDK_INVALID_PORT 0xffff
29
30 extern void zd_dpdk_pbr_flows_show(struct vty *vty);
31 extern void zd_dpdk_port_show(struct vty *vty, uint16_t port_id, bool uj,
32 int detail);
33 extern void zd_dpdk_stat_show(struct vty *vty);
34 extern void zd_dpdk_vty_init(void);
35
36 #endif