diff options
author | Klement Sekera <ksekera@cisco.com> | 2019-06-24 11:52:49 +0000 |
---|---|---|
committer | Andrew Yourtchenko <ayourtch@gmail.com> | 2019-10-03 08:43:03 +0000 |
commit | d46055e868b7e687f50866f8aa1cefc177836bc7 (patch) | |
tree | fe5d9a05db86996d210495c66caca2da94fbf37e /src/vnet/CMakeLists.txt | |
parent | 3f6e370ebd13d101ec6f54eef15e7373818801da (diff) |
ip: refactor reassembly
this is a preparation step for introducing other reassembly types
Type: refactor
Change-Id: I197e299dbd729b00eead31667913b8ceff915d63
Signed-off-by: Klement Sekera <ksekera@cisco.com>
(cherry picked from commit 896c896a3c4ed563a270281ff8b50fd253f4833f)
Diffstat (limited to 'src/vnet/CMakeLists.txt')
-rw-r--r-- | src/vnet/CMakeLists.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/vnet/CMakeLists.txt b/src/vnet/CMakeLists.txt index 1e51f3d7102..aaa16d8389b 100644 --- a/src/vnet/CMakeLists.txt +++ b/src/vnet/CMakeLists.txt @@ -431,7 +431,7 @@ list(APPEND VNET_SOURCES ip/ip4_pg.c ip/ip4_source_and_port_range_check.c ip/ip4_source_check.c - ip/ip4_reassembly.c + ip/reass/ip4_full_reass.c ip/ip6_format.c ip/ip6_forward.c ip/ip6_ll_table.c @@ -441,7 +441,7 @@ list(APPEND VNET_SOURCES ip/ip6_input.c ip/ip6_neighbor.c ip/ip6_pg.c - ip/ip6_reassembly.c + ip/reass/ip6_full_reass.c ip/rd_cp.c ip/ip_neighbor.c ip/ip_api.c @@ -461,9 +461,9 @@ list(APPEND VNET_SOURCES list(APPEND VNET_MULTIARCH_SOURCES ip/ip4_source_check.c ip/ip4_punt_drop.c - ip/ip4_reassembly.c + ip/reass/ip4_full_reass.c ip/ip6_hop_by_hop.c - ip/ip6_reassembly.c + ip/reass/ip6_full_reass.c ip/ip6_input.c ip/ip6_punt_drop.c ip/punt_node.c |