1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
/* SPDX-License-Identifier: BSD-3-Clause
* Copyright(C) 2023 Marvell International Ltd.
*/
#ifndef __INCLUDE_IP4_REASSEMBLY_PRIV_H__
#define __INCLUDE_IP4_REASSEMBLY_PRIV_H__
/**
* @internal
*
* Ip4_reassembly context structure.
*/
struct ip4_reassembly_ctx {
struct rte_ip_frag_tbl *tbl;
struct rte_ip_frag_death_row *dr;
};
/**
* @internal
*
* Get the IP4 reassembly node
*
* @return
* Pointer to the IP4 reassembly node.
*/
struct rte_node_register *ip4_reassembly_node_get(void);
#endif /* __INCLUDE_IP4_REASSEMBLY_PRIV_H__ */
|