summaryrefslogtreecommitdiffstats
path: root/test/helpers/quictestlib.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/helpers/quictestlib.c')
-rw-r--r--test/helpers/quictestlib.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/helpers/quictestlib.c b/test/helpers/quictestlib.c
index 6381d720ff..3c3cb73f96 100644
--- a/test/helpers/quictestlib.c
+++ b/test/helpers/quictestlib.c
@@ -141,6 +141,14 @@ int qtest_create_quic_objects(OSSL_LIB_CTX *libctx, SSL_CTX *clientctx,
goto err;
}
+ if ((flags & QTEST_FLAG_PACKET_SPLIT) != 0) {
+ BIO *pktsplitbio = BIO_new(bio_f_pkt_split_dgram_filter());
+
+ if (!TEST_ptr(pktsplitbio))
+ goto err;
+ cbio = BIO_push(pktsplitbio, cbio);
+ }
+
if ((flags & QTEST_FLAG_NOISE) != 0) {
BIO *noisebio = BIO_new(bio_f_noisy_dgram_filter());