diff options
author | Klement Sekera <ksekera@cisco.com> | 2019-06-24 11:52:49 +0000 |
---|---|---|
committer | Ole Trøan <otroan@employees.org> | 2019-09-25 08:23:04 +0000 |
commit | 896c896a3c4ed563a270281ff8b50fd253f4833f (patch) | |
tree | 801170d6b2d3c7ae4ff782e7f7088b4d6146d393 /src/vnet/ip/ip4_input.c | |
parent | 5e2f84d2cf97a6efa89c1c4bbf80de6a8f03d2a8 (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>
Diffstat (limited to 'src/vnet/ip/ip4_input.c')
-rw-r--r-- | src/vnet/ip/ip4_input.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vnet/ip/ip4_input.c b/src/vnet/ip/ip4_input.c index 94c4aac4271..6093b136c3d 100644 --- a/src/vnet/ip/ip4_input.c +++ b/src/vnet/ip/ip4_input.c @@ -398,7 +398,7 @@ VLIB_REGISTER_NODE (ip4_input_node) = { [IP4_INPUT_NEXT_LOOKUP] = "ip4-lookup", [IP4_INPUT_NEXT_LOOKUP_MULTICAST] = "ip4-mfib-forward-lookup", [IP4_INPUT_NEXT_ICMP_ERROR] = "ip4-icmp-error", - [IP4_INPUT_NEXT_REASSEMBLY] = "ip4-reassembly", + [IP4_INPUT_NEXT_REASSEMBLY] = "ip4-full-reassembly", }, .format_buffer = format_ip4_header, |