hs-test: more debug output in http3 test
[vpp.git] / src / plugins / cnat / cnat_maglev.h
1 /* SPDX-License-Identifier: Apache-2.0
2  * Copyright(c) 2022 Cisco Systems, Inc.
3  */
4
5 #ifndef __CNAT_MAGLEV_H__
6 #define __CNAT_MAGLEV_H__
7
8 #include <cnat/cnat_types.h>
9 #include <cnat/cnat_translation.h>
10
11 typedef struct
12 {
13   /* offset & skip used for sorting, should be first */
14   u32 offset;
15   u32 skip;
16   u32 index;
17 } cnat_maglev_perm_t;
18
19 extern void cnat_translation_init_maglev (cnat_translation_t *ct);
20
21 #endif