From: Matus Fabian Date: Mon, 10 Jul 2017 06:31:41 +0000 (-0700) Subject: SNAT: fixed bug in fallback to 3-tuple key for non TCP/UDP sessions X-Git-Tag: v17.10-rc1~357 X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F98%2F7498%2F2;p=vpp.git SNAT: fixed bug in fallback to 3-tuple key for non TCP/UDP sessions Change-Id: I1c4d5f92ec841b1cfe1a33eab4bb94e4001d0411 Signed-off-by: Matus Fabian --- diff --git a/src/plugins/snat/in2out.c b/src/plugins/snat/in2out.c index d3fb92f5f1d..9b09902abe1 100644 --- a/src/plugins/snat/in2out.c +++ b/src/plugins/snat/in2out.c @@ -1093,6 +1093,10 @@ snat_in2out_unknown_proto (snat_main_t *sm, while (ses_index != ~0) { s = pool_elt_at_index (tsm->sessions, ses_index); + elt_index = elt->next; + elt = pool_elt_at_index (tsm->list_pool, elt_index); + ses_index = elt->value; + if (s->ext_host_addr.as_u32 == ip->dst_address.as_u32) { new_addr = ip->src_address.as_u32 = s->out2in.addr.as_u32;