diff options
author | Elias Rudberg <elias.rudberg@bahnhof.net> | 2020-03-13 14:26:50 +0100 |
---|---|---|
committer | Ole Trøan <otroan@employees.org> | 2020-03-17 10:03:46 +0000 |
commit | 042e8b0d3d6df16ba64d6ce56c64450e8f81740e (patch) | |
tree | 359547a056b5b1ac95d267e05bf82a27dbe92e95 | |
parent | ef678a4bd175e53015d5d60f6fe36739925c5c85 (diff) |
nat: in2out/out2in handoff node index bugfix
This fixes a bug in the initialization of handoff_out2in_index and
handoff_in2out_index where the node index for out2in was set to the
in2out node, and vice versa.
Type: fix
Signed-off-by: Elias Rudberg <elias.rudberg@bahnhof.net>
Change-Id: I983ddd3b3cec06f4cb3fb95b2a9cda4ab6d1270f
(cherry picked from commit dd9aedaf377f4af8620408843bd3e4610d3df5f9)
-rwxr-xr-x | src/plugins/nat/nat.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/nat/nat.c b/src/plugins/nat/nat.c index c1a18394aff..5ac10797f4a 100755 --- a/src/plugins/nat/nat.c +++ b/src/plugins/nat/nat.c @@ -3928,8 +3928,8 @@ snat_config (vlib_main_t * vm, unformat_input_t * input) sm->worker_in2out_cb = snat_get_worker_in2out_cb; sm->worker_out2in_cb = snat_get_worker_out2in_cb; - sm->handoff_out2in_index = snat_in2out_node.index; - sm->handoff_in2out_index = snat_out2in_node.index; + sm->handoff_out2in_index = snat_out2in_node.index; + sm->handoff_in2out_index = snat_in2out_node.index; sm->handoff_in2out_output_index = snat_in2out_output_node.index; sm->in2out_node_index = snat_in2out_node.index; |