summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorTomas Mraz <tomas@openssl.org>2022-10-11 08:44:46 +0200
committerHugo Landau <hlandau@openssl.org>2022-11-14 08:01:57 +0000
commite77396f6f508f604b69f795e624896c427fe8b06 (patch)
treee2a090bbecac076fd993d61783add0c47e5b5da9 /test
parentbbf902c34a90435bacea8a551ac39a559c8df6b2 (diff)
downloadopenssl-new-e77396f6f508f604b69f795e624896c427fe8b06.tar.gz
QUIC Receive Stream Management: Call QUIC flow control
Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Hugo Landau <hlandau@openssl.org> (Merged from https://github.com/openssl/openssl/pull/19351)
Diffstat (limited to 'test')
-rw-r--r--test/quic_stream_test.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/quic_stream_test.c b/test/quic_stream_test.c
index 8f86396628..918d67aea8 100644
--- a/test/quic_stream_test.c
+++ b/test/quic_stream_test.c
@@ -332,7 +332,7 @@ static int test_rstream_simple(void)
size_t readbytes = 0, avail = 0;
int fin = 0;
- if (!TEST_ptr(rstream = ossl_quic_rstream_new(NULL)))
+ if (!TEST_ptr(rstream = ossl_quic_rstream_new(NULL, NULL, NULL)))
goto err;
if (!TEST_true(ossl_quic_rstream_queue_data(rstream, NULL, 5,
@@ -407,7 +407,7 @@ static int test_rstream_random(int idx)
if (!TEST_ptr(bulk_data = OPENSSL_malloc(data_size))
|| !TEST_ptr(read_buf = OPENSSL_malloc(data_size))
- || !TEST_ptr(rstream = ossl_quic_rstream_new(NULL)))
+ || !TEST_ptr(rstream = ossl_quic_rstream_new(NULL, NULL, NULL)))
goto err;
for (i = 0; i < data_size; ++i)