diff options
author | Benoît Ganne <bganne@cisco.com> | 2023-08-02 11:31:46 +0200 |
---|---|---|
committer | Beno�t Ganne <bganne@cisco.com> | 2024-02-22 08:24:02 +0000 |
commit | 89c7b545dd3333092e718e2a9194ed72c27a54f7 (patch) | |
tree | 33d3982d43df469e5ab2f5eea5ac0df699241e47 /src/vnet/ip/ip6_packet.h | |
parent | 8074fc6209c97eba0d4d5e8391cae0f5fb61a5c4 (diff) |
ip6: ECMP hash support for ipv6 fragments
Type: improvement
Change-Id: I41f70e5977fedbf0050205ebe52126ef373ebc06
Signed-off-by: Benoît Ganne <bganne@cisco.com>
Diffstat (limited to 'src/vnet/ip/ip6_packet.h')
-rw-r--r-- | src/vnet/ip/ip6_packet.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/vnet/ip/ip6_packet.h b/src/vnet/ip/ip6_packet.h index e71604ce7d3..c506792ddcf 100644 --- a/src/vnet/ip/ip6_packet.h +++ b/src/vnet/ip/ip6_packet.h @@ -441,6 +441,13 @@ typedef CLIB_PACKED (struct { }) ip6_router_alert_option_t; typedef CLIB_PACKED (struct { + u8 protocol; + u8 reserved; + u16 fragoff; + u32 id; +}) ip6_fragment_ext_header_t; + +typedef CLIB_PACKED (struct { u8 next_hdr; /* Length of this header plus option data in 8 byte units. */ u8 n_data_u64s; |