SNAT: fixed bug in fallback to 3-tuple key for non TCP/UDP sessions
[vpp.git] / src / plugins / snat / in2out.c
index d3fb92f..9b09902 100644 (file)
@@ -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;