diff options
Diffstat (limited to 'src/plugins/nat/nat.h')
-rw-r--r-- | src/plugins/nat/nat.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/plugins/nat/nat.h b/src/plugins/nat/nat.h index 7fa1ef79c3d..86f6342ab09 100644 --- a/src/plugins/nat/nat.h +++ b/src/plugins/nat/nat.h @@ -492,10 +492,6 @@ typedef struct typedef struct { - /* Main lookup tables */ - clib_bihash_8_8_t out2in; - clib_bihash_8_8_t in2out; - /* Find-a-user => src address lookup */ clib_bihash_8_8_t user_hash; @@ -590,6 +586,10 @@ typedef struct snat_main_s /* Static mapping pool */ snat_static_mapping_t *static_mappings; + /* Endpoint independent lookup tables */ + clib_bihash_8_8_t in2out; + clib_bihash_8_8_t out2in; + /* Endpoint dependent lookup table */ clib_bihash_16_8_t flow_hash; |