aboutsummaryrefslogtreecommitdiffstats
path: root/lib/librte_table/rte_table_stub.h
blob: 2b40739790e5897f8e524fe67b155b4b02c6b283 (plain)
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
29
30
31
32
33
/* SPDX-License-Identifier: BSD-3-Clause
 * Copyright(c) 2010-2014 Intel Corporation
 */

#ifndef __INCLUDE_RTE_TABLE_STUB_H__
#define __INCLUDE_RTE_TABLE_STUB_H__

#ifdef __cplusplus
extern "C" {
#endif

/**
 * @file
 * RTE Table Stub
 *
 * The stub table lookup operation produces lookup miss for all input packets.
 *
 ***/

#include <stdint.h>

#include "rte_table.h"

/** Stub table parameters: NONE */

/** Stub table operations */
extern struct rte_table_ops rte_table_stub_ops;

#ifdef __cplusplus
}
#endif

#endif