numam-dpdk/lib/node/pkt_cls_priv.h
Thomas Monjalon 7a33572057 lib: remove C++ include guard from private headers
The private headers are compiled internally with a C compiler.
Thus extern "C" declaration is useless in such files.

Signed-off-by: Thomas Monjalon <thomas@monjalon.net>
2021-09-22 22:00:17 +02:00

20 lines
362 B
C

/* SPDX-License-Identifier: BSD-3-Clause
* Copyright (C) 2020 Marvell.
*/
#ifndef __INCLUDE_PKT_CLS_PRIV_H__
#define __INCLUDE_PKT_CLS_PRIV_H__
#include <rte_common.h>
struct pkt_cls_node_ctx {
uint16_t l2l3_type;
};
enum pkt_cls_next_nodes {
PKT_CLS_NEXT_PKT_DROP,
PKT_CLS_NEXT_IP4_LOOKUP,
PKT_CLS_NEXT_MAX,
};
#endif /* __INCLUDE_PKT_CLS_PRIV_H__ */