diff options
author | Alexander Chernavin <achernavin@netgate.com> | 2023-03-29 16:09:37 +0000 |
---|---|---|
committer | Matthew Smith <mgsmith@netgate.com> | 2023-06-02 14:41:53 +0000 |
commit | f2b6edb149a32f455ce3ee13aff1acd0a3c2ab1d (patch) | |
tree | f5e5671d46cf901aab4e6eeb5239b164ddac02b2 /src/plugins/wireguard/wireguard.h | |
parent | b1239c48871a3ff3ab6bd6df71d922898a935c4d (diff) |
wireguard: add support for chained buffers
Type: feature
With this change, packets that are larger than a single buffer can fit
will be able to be sent and received over a Wireguard tunnel. Also,
cover this with tests.
Signed-off-by: Alexander Chernavin <achernavin@netgate.com>
Change-Id: Ifaf7325676d728580097bc389b51a9be39e44d88
Diffstat (limited to 'src/plugins/wireguard/wireguard.h')
-rw-r--r-- | src/plugins/wireguard/wireguard.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/plugins/wireguard/wireguard.h b/src/plugins/wireguard/wireguard.h index 3a6248ba6b5..05cefc4f073 100644 --- a/src/plugins/wireguard/wireguard.h +++ b/src/plugins/wireguard/wireguard.h @@ -31,9 +31,12 @@ typedef struct wg_per_thread_data_t_ { CLIB_CACHE_LINE_ALIGN_MARK (cacheline0); vnet_crypto_op_t *crypto_ops; + vnet_crypto_op_t *chained_crypto_ops; + vnet_crypto_op_chunk_t *chunks; vnet_crypto_async_frame_t **async_frames; u8 data[WG_DEFAULT_DATA_SIZE]; } wg_per_thread_data_t; + typedef struct { /* convenience */ |