diff options
author | Filip Varga <fivarga@cisco.com> | 2020-05-12 13:42:45 +0200 |
---|---|---|
committer | Ole Trøan <otroan@employees.org> | 2020-05-13 11:15:42 +0000 |
commit | 103d355db504527cc6fa1d563ce6976b8490d22c (patch) | |
tree | 0a5c7af838bcab4a9b542022984a2e7c6c5f6145 /src/plugins/nat/nat_inlines.h | |
parent | 85af76af5c63c5fbe018a0765e252eea64efb0ea (diff) |
nat: handoff next node feature fix
Type: fix
Change-Id: I14e323e7bb1db7a3d40668212535c07504374e59
Signed-off-by: Filip Varga <fivarga@cisco.com>
Diffstat (limited to 'src/plugins/nat/nat_inlines.h')
-rw-r--r-- | src/plugins/nat/nat_inlines.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/plugins/nat/nat_inlines.h b/src/plugins/nat/nat_inlines.h index a0803566ccc..a5fa84dcfa9 100644 --- a/src/plugins/nat/nat_inlines.h +++ b/src/plugins/nat/nat_inlines.h @@ -89,12 +89,14 @@ nat_pre_node_fn_inline (vlib_main_t * vm, nat_pre_trace_t *t = vlib_add_trace (vm, node, b0, sizeof (*t)); t->next_index = next0; + t->arc_next_index = arc_next0; } if (b1->flags & VLIB_BUFFER_IS_TRACED) { nat_pre_trace_t *t = vlib_add_trace (vm, node, b0, sizeof (*t)); - t->next_index = next0; + t->next_index = next1; + t->arc_next_index = arc_next1; } } @@ -129,6 +131,7 @@ nat_pre_node_fn_inline (vlib_main_t * vm, { nat_pre_trace_t *t = vlib_add_trace (vm, node, b0, sizeof (*t)); t->next_index = next0; + t->arc_next_index = arc_next0; } /* verify speculative enqueue, maybe switch current next frame */ |