1 /* 2 * SPDX-License-Identifier: BSD-3-Clause 3 * Copyright(c) 2023 Napatech A/S 4 */ 5 6 #ifndef __FLOW_FILTER_HPP__ 7 #define __FLOW_FILTER_HPP__ 8 9 #include "flow_api.h" 10 #include "nthw_fpga_model.h" 11 12 int flow_filter_init(nthw_fpga_t *p_fpga, struct flow_nic_dev **p_flow_device, int adapter_no); 13 int flow_filter_done(struct flow_nic_dev *dev); 14 int flow_get_flm_stats(struct flow_nic_dev *ndev, uint64_t *data, uint64_t size); 15 16 #endif /* __FLOW_FILTER_HPP__ */ 17