mirror of https://github.com/F-Stack/f-stack.git
16 lines
314 B
C
16 lines
314 B
C
/* SPDX-License-Identifier: BSD-3-Clause
|
|
* Copyright(c) 2017 Intel Corporation
|
|
*/
|
|
|
|
#include <rte_mbuf.h>
|
|
#include "rte_distributor.h"
|
|
#include "distributor_private.h"
|
|
|
|
void
|
|
find_match_vec(struct rte_distributor *d,
|
|
uint16_t *data_ptr,
|
|
uint16_t *output_ptr)
|
|
{
|
|
find_match_scalar(d, data_ptr, output_ptr);
|
|
}
|