diff options
author | Nathan Skrzypczak <nathan.skrzypczak@gmail.com> | 2021-03-05 17:16:40 +0100 |
---|---|---|
committer | Damjan Marion <dmarion@me.com> | 2021-03-15 17:36:23 +0000 |
commit | 418abe2a259bc8c04c3b8839099204d56ae504ba (patch) | |
tree | ef5cb4dacc94843b38fe7286e01afa263d5dff4e /src/plugins/cnat/cnat_translation.h | |
parent | 592dbd0ad3b464d14aba7ccec918d5ed7f9429fc (diff) |
cnat: maglev fixes
This fixes cnat_feature node LB
- use siblings instead of direct next_nodes
- only do the lookup if we have NO_NAT
- fix behavior in v6
Type: fix
Change-Id: Ie80c9912946bf55c30eadeb51340f4aec9bb297e
Signed-off-by: Nathan Skrzypczak <nathan.skrzypczak@gmail.com>
Diffstat (limited to 'src/plugins/cnat/cnat_translation.h')
-rw-r--r-- | src/plugins/cnat/cnat_translation.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/plugins/cnat/cnat_translation.h b/src/plugins/cnat/cnat_translation.h index 3b6e694a845..97b0c908b42 100644 --- a/src/plugins/cnat/cnat_translation.h +++ b/src/plugins/cnat/cnat_translation.h @@ -25,11 +25,6 @@ */ extern vlib_combined_counter_main_t cnat_translation_counters; -typedef enum cnat_trk_flag_t_ -{ - CNAT_TRK_ACTIVE = (1 << 0), - CNAT_TRK_FLAG_NO_NAT = (1 << 1), -} cnat_trk_flag_t; /** * Data used to track an EP in the FIB |