diff options
author | Nathan Skrzypczak <nathan.skrzypczak@gmail.com> | 2019-12-10 10:10:01 +0100 |
---|---|---|
committer | Dave Wallace <dwallacelf@gmail.com> | 2019-12-11 15:44:26 +0000 |
commit | 038c7e662a8673f13ed12310a450ff646e825824 (patch) | |
tree | 65797907f5b95abc17a542a2ebac808f634c8902 /src/plugins/quic/quic.h | |
parent | 5d4c99f27ee89a823d993853fe6b52e12c9e6c58 (diff) |
quic: Use per thread next_cid
Type: fix
Change-Id: Ia89427257b78f6f7ba62c9d1076bf0593ee2dca7
Signed-off-by: Nathan Skrzypczak <nathan.skrzypczak@gmail.com>
Diffstat (limited to 'src/plugins/quic/quic.h')
-rw-r--r-- | src/plugins/quic/quic.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/quic/quic.h b/src/plugins/quic/quic.h index 9433a895a8b..dcdb6cf8e24 100644 --- a/src/plugins/quic/quic.h +++ b/src/plugins/quic/quic.h @@ -187,6 +187,7 @@ typedef struct quic_worker_ctx_ CLIB_CACHE_LINE_ALIGN_MARK (cacheline0); int64_t time_now; /**< worker time */ tw_timer_wheel_1t_3w_1024sl_ov_t timer_wheel; /**< worker timer wheel */ + quicly_cid_plaintext_t next_cid; } quic_worker_ctx_t; typedef struct quic_rx_packet_ctx_ @@ -225,7 +226,6 @@ typedef struct quic_main_ u8 default_crypto_engine; /**< Used if you do connect with CRYPTO_ENGINE_NONE (0) */ ptls_handshake_properties_t hs_properties; - quicly_cid_plaintext_t next_cid; quic_session_cache_t session_cache; u32 udp_fifo_size; |