diff options
author | Dave Wallace <dwallacelf@gmail.com> | 2019-10-30 16:58:30 +0000 |
---|---|---|
committer | Florin Coras <florin.coras@gmail.com> | 2019-11-01 14:52:38 +0000 |
commit | f9d784b6b9d3acf141ccccf3faf51f409f405294 (patch) | |
tree | 4ea3c9b7d9583ca4810c207672e09b251ccade06 /src/plugins/quic/quic.h | |
parent | 3edd1bbe6a03e939eeb3eabbce0d4bda995c7ec1 (diff) |
quic: fifo size is u32
- Fix cli / config fifo size to only accept u32
size input.
- Make cli / config fifo-size input type handling
to be the same as vpp hoststack
- Update external transfer tests to use new
syntax with different fifo sizes for
vpp_echo client/server and vpp.
Type: fix
Change-Id: Ia5ddb2b8d3d9908ab502352819eebeec8ac0971d
Signed-off-by: Dave Wallace <dwallacelf@gmail.com>
Diffstat (limited to 'src/plugins/quic/quic.h')
-rw-r--r-- | src/plugins/quic/quic.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/quic/quic.h b/src/plugins/quic/quic.h index 85c78dd7871..88a8885ed6c 100644 --- a/src/plugins/quic/quic.h +++ b/src/plugins/quic/quic.h @@ -193,8 +193,8 @@ typedef struct quic_main_ ptls_handshake_properties_t hs_properties; quicly_cid_plaintext_t next_cid; - u64 udp_fifo_size; - u64 udp_fifo_prealloc; + u32 udp_fifo_size; + u32 udp_fifo_prealloc; } quic_main_t; #endif /* __included_quic_h__ */ |