1 /* 2 * SPDX-License-Identifier: BSD-3-Clause 3 * Copyright(c) 2023 Napatech A/S 4 */ 5 6 #ifndef _STREAM_BINARY_FLOW_API_H_ 7 #define _STREAM_BINARY_FLOW_API_H_ 8 9 /* 10 * Flow frontend for binary programming interface 11 */ 12 13 #define FLOW_MAX_QUEUES 128 14 15 struct flow_queue_id_s { 16 int id; 17 int hw_id; 18 }; 19 20 struct flow_eth_dev; /* port device */ 21 22 #endif /* _STREAM_BINARY_FLOW_API_H_ */ 23