NAT64: Fix port byte order in nat64_free_out_addr_and_port 33/18133/2
authorFaicker Mo <faicker.mo@ucloud.cn>
Fri, 8 Mar 2019 09:22:21 +0000 (17:22 +0800)
committerOle Trøan <otroan@employees.org>
Mon, 6 May 2019 07:23:37 +0000 (07:23 +0000)
Change-Id: Idc050e469a5b697ca5587ddd4e87ac2d48d15658
Signed-off-by: Faicker Mo <faicker.mo@ucloud.cn>
src/plugins/nat/nat64.c

index 9c73004..748205a 100644 (file)
@@ -599,7 +599,7 @@ nat64_free_out_addr_and_port (struct nat64_db_s *db, ip4_address_t * addr,
         case SNAT_PROTOCOL_##N: \
           ASSERT (clib_bitmap_get_no_check (a->busy_##n##_port_bitmap, \
                   port_host_byte_order) == 1); \
-          clib_bitmap_set_no_check (a->busy_##n##_port_bitmap, port, 0); \
+          clib_bitmap_set_no_check (a->busy_##n##_port_bitmap, port_host_byte_order, 0); \
           a->busy_##n##_ports--; \
           a->busy_##n##_ports_per_thread[thread_index]--; \
           break;