7a33572057
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>
20 lines
362 B
C
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__ */
|