summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorHugo Landau <hlandau@openssl.org>2022-11-18 17:20:20 +0000
committerHugo Landau <hlandau@openssl.org>2023-01-13 13:20:17 +0000
commitd7668ff21328c03f137d665b37f228e7c1f7a32a (patch)
treec013d1dcb523ac6b12f5e3b34bd848d20f709ab6 /test
parent6292519cd8102983e9924b6b0d3f298ac5f93e80 (diff)
downloadopenssl-new-d7668ff21328c03f137d665b37f228e7c1f7a32a.tar.gz
QUIC DEMUX: Allow MTU to vary over time and autodetect MTU
Reviewed-by: Tomas Mraz <tomas@openssl.org> Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/19703)
Diffstat (limited to 'test')
-rw-r--r--test/quic_record_test.c1
-rw-r--r--test/quic_txp_test.c2
2 files changed, 1 insertions, 2 deletions
diff --git a/test/quic_record_test.c b/test/quic_record_test.c
index 18d8711afa..1dc0eec5e5 100644
--- a/test/quic_record_test.c
+++ b/test/quic_record_test.c
@@ -1704,7 +1704,6 @@ static int rx_state_ensure(struct rx_state *s)
if (s->demux == NULL
&& !TEST_ptr(s->demux = ossl_quic_demux_new(NULL,
s->args.short_conn_id_len,
- 1500,
fake_time,
NULL)))
return 0;
diff --git a/test/quic_txp_test.c b/test/quic_txp_test.c
index 8d2361af18..241645a57b 100644
--- a/test/quic_txp_test.c
+++ b/test/quic_txp_test.c
@@ -183,7 +183,7 @@ static int helper_init(struct helper *h)
if (!TEST_ptr(h->txp = ossl_quic_tx_packetiser_new(&h->args)))
goto err;
- if (!TEST_ptr(h->demux = ossl_quic_demux_new(h->bio2, 8, 1200,
+ if (!TEST_ptr(h->demux = ossl_quic_demux_new(h->bio2, 8,
fake_now, NULL)))
goto err;