diff options
author | Aloys Augustin <aloaugus@cisco.com> | 2019-09-05 17:58:21 +0200 |
---|---|---|
committer | Dave Wallace <dwallacelf@gmail.com> | 2019-09-06 13:31:08 +0000 |
commit | ffbfe3a2d6aaf4e847a1848c29fc8ce2997ed260 (patch) | |
tree | 110128d6b8b43b263e230a2bc036041cd0949aca /src/plugins/quic/quic.h | |
parent | a069762e8e67f2acb6de612ece01666b1c350473 (diff) |
quic: fix server opening stream immediately
Previously, if the first thing a server did was to open a stream and
send data, this could trigger a crash on the clilent side VPP as the
quic session wouldn't be allocated.
Change-Id: I43990ce2a71217d6719ecae4da60111d05fbcfc0
Type: fix
Signed-off-by: Aloys Augustin <aloaugus@cisco.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 f44bae29c47..5b821d77bae 100644 --- a/src/plugins/quic/quic.h +++ b/src/plugins/quic/quic.h @@ -158,7 +158,7 @@ typedef struct quic_main_ u32 app_index; quic_ctx_t **ctx_pool; quic_worker_ctx_t *wrk_ctx; - clib_bihash_16_8_t connection_hash; /* quicly connection id -> conn handle */ + clib_bihash_16_8_t connection_hash; /* quic connection id -> conn handle */ f64 tstamp_ticks_per_clock; ptls_cipher_suite_t ***quic_ciphers; /* available ciphers by crypto engine */ |