File: ip4_reassembly_priv.h

package info (click to toggle)
dpdk 25.11-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 127,892 kB
  • sloc: ansic: 2,358,479; python: 16,426; sh: 4,474; makefile: 1,713; awk: 70
file content (28 lines) | stat: -rw-r--r-- 552 bytes parent folder | download | duplicates (2)
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__ */