summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorHugo Landau <hlandau@openssl.org>2023-04-28 16:56:34 +0100
committerHugo Landau <hlandau@openssl.org>2023-05-24 10:34:47 +0100
commit5915a900af86db8625caa77a02fd50cf9a3b3e1b (patch)
treee5b1eb84756d90e850855f3452cbbd2827e7e7bb /test
parentfca44cfc1c930afab94fac08ad5a3a303f1724fe (diff)
QUIC QSM: Allow QSM to know if we are in the server role
Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/20856)
Diffstat (limited to 'test')
-rw-r--r--test/quic_txp_test.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/quic_txp_test.c b/test/quic_txp_test.c
index 3c9804d2ab..7e5e0edc7a 100644
--- a/test/quic_txp_test.c
+++ b/test/quic_txp_test.c
@@ -176,7 +176,8 @@ static int helper_init(struct helper *h)
if (!TEST_true(ossl_quic_stream_map_init(&h->qsm, NULL, NULL,
&h->max_streams_bidi_rxfc,
- &h->max_streams_uni_rxfc)))
+ &h->max_streams_uni_rxfc,
+ /*is_server=*/0)))
goto err;
h->have_qsm = 1;