e977e4199a
Introduce new testpmd commands to load/unload RX/TX BPF-based filters. Signed-off-by: Konstantin Ananyev <konstantin.ananyev@intel.com> Acked-by: Ferruh Yigit <ferruh.yigit@intel.com>
17 lines
329 B
C
17 lines
329 B
C
/* SPDX-License-Identifier: BSD-3-Clause
|
|
* Copyright(c) 2018 Intel Corporation
|
|
*/
|
|
|
|
#ifndef _BPF_CMD_H_
|
|
#define _BPF_CMD_H_
|
|
|
|
#ifdef RTE_LIBRTE_BPF
|
|
|
|
/* BPF CLI */
|
|
extern cmdline_parse_inst_t cmd_operate_bpf_ld_parse;
|
|
extern cmdline_parse_inst_t cmd_operate_bpf_unld_parse;
|
|
|
|
#endif /* RTE_LIBRTE_BPF */
|
|
|
|
#endif /* _BPF_CMD_H_ */
|