1 /* SPDX-License-Identifier: BSD-3-Clause 2 * Copyright(c) 2010-2014 Intel Corporation 3 */ 4 5 #ifndef __INCLUDE_RTE_TABLE_STUB_H__ 6 #define __INCLUDE_RTE_TABLE_STUB_H__ 7 8 /** 9 * @file 10 * RTE Table Stub 11 * 12 * The stub table lookup operation produces lookup miss for all input packets. 13 */ 14 15 #include "rte_table.h" 16 17 #ifdef __cplusplus 18 extern "C" { 19 #endif 20 21 /** Stub table parameters: NONE */ 22 23 /** Stub table operations */ 24 extern struct rte_table_ops rte_table_stub_ops; 25 26 #ifdef __cplusplus 27 } 28 #endif 29 30 #endif 31