[dpdk-dev] [PATCH v5 04/10] mbuf: add IPsec ESP tunnel type
From: Radu Nicolau <hidden>
Date: 2021-09-10 11:40:11
Subsystem:
library code, the rest · Maintainers:
Andrew Morton, Linus Torvalds
From: Radu Nicolau <hidden>
Date: 2021-09-10 11:40:11
Subsystem:
library code, the rest · Maintainers:
Andrew Morton, Linus Torvalds
Add tunnel type for IPsec ESP tunnels Signed-off-by: Declan Doherty <redacted> Signed-off-by: Radu Nicolau <redacted> Signed-off-by: Abhijit Sinha <redacted> Signed-off-by: Daniel Martin Buckley <redacted> Acked-by: Fan Zhang <redacted> Acked-by: Akhil Goyal <redacted> --- lib/mbuf/rte_mbuf_core.h | 1 + 1 file changed, 1 insertion(+)
diff --git a/lib/mbuf/rte_mbuf_core.h b/lib/mbuf/rte_mbuf_core.h
index bb38d7f581..a4d95deee6 100644
--- a/lib/mbuf/rte_mbuf_core.h
+++ b/lib/mbuf/rte_mbuf_core.h@@ -253,6 +253,7 @@ extern "C" { #define PKT_TX_TUNNEL_MPLSINUDP (0x5ULL << 45) #define PKT_TX_TUNNEL_VXLAN_GPE (0x6ULL << 45) #define PKT_TX_TUNNEL_GTP (0x7ULL << 45) +#define PKT_TX_TUNNEL_ESP (0x8ULL << 45) /** * Generic IP encapsulated tunnel type, used for TSO and checksum offload. * It can be used for tunnels which are not standards or listed above.
--
2.25.1