diff options
author | Filip Varga <fivarga@cisco.com> | 2022-03-31 16:12:44 +0200 |
---|---|---|
committer | Ole Tr�an <otroan@employees.org> | 2022-04-05 15:07:14 +0000 |
commit | 35cf8aa93bfb8414ae58bfcb1d668b2c374ff583 (patch) | |
tree | 92158c7b39f69d2eebd8aa690a7dd3247286a009 /src/plugins/nat/nat44-ed/nat44_ed.h | |
parent | 79934e855fc58aefde498cd0564796cdd6ccbc59 (diff) |
nat: nat44 cli bug fix
Two similar CLI paths "nat44" and "nat44 add interface address"
caused unexpected behavior. If "nat44 add interface address"
command would fail the vlib cli processing function would
call "nat44" handler. This would also clean any previously
set errors from the first command and basically return
same error returned by "nat44" handler for every failed
command that starts with the same path string.
Fixes nat44-ed and nat44-ei plugin.
Change-Id: I1aac85c8ae2932da582a2b78243521d1bf8a0653
Ticket: VPP-2021
Type: fix
Signed-off-by: Filip Varga <fivarga@cisco.com>
Diffstat (limited to 'src/plugins/nat/nat44-ed/nat44_ed.h')
-rw-r--r-- | src/plugins/nat/nat44-ed/nat44_ed.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/plugins/nat/nat44-ed/nat44_ed.h b/src/plugins/nat/nat44-ed/nat44_ed.h index 1ca71187ac7..05503a475c2 100644 --- a/src/plugins/nat/nat44-ed/nat44_ed.h +++ b/src/plugins/nat/nat44-ed/nat44_ed.h @@ -650,8 +650,6 @@ typedef struct snat_main_s /* nat44 plugin enabled */ u8 enabled; - vnet_main_t *vnet_main; - /* TCP session state machine table: * first dimension is possible states * second dimension is direction (in2out/out2in) |