diff options
author | Hugo Landau <hlandau@openssl.org> | 2023-05-18 14:07:00 +0200 |
---|---|---|
committer | Tomas Mraz <tomas@openssl.org> | 2023-05-29 08:51:12 +0200 |
commit | 041d48c9636478563b5dcd936c1fe816d1628732 (patch) | |
tree | a89069a7752f394461406e4e373f2f345c96ba9d /test/quic_newcid_test.c | |
parent | QUIC: Update documentation to reflect compatibility of DTLS APIs (diff) | |
download | openssl-041d48c9636478563b5dcd936c1fe816d1628732.tar.xz openssl-041d48c9636478563b5dcd936c1fe816d1628732.zip |
QUIC: Rename SSL_tick etc. in man(7) docs
Reviewed-by: Matt Caswell <matt@openssl.org>
Reviewed-by: Tim Hudson <tjh@openssl.org>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/20879)
Diffstat (limited to '')
-rw-r--r-- | test/quic_newcid_test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/quic_newcid_test.c b/test/quic_newcid_test.c index 2044209ebb..127439ff2a 100644 --- a/test/quic_newcid_test.c +++ b/test/quic_newcid_test.c @@ -112,7 +112,7 @@ static int test_ncid_frame(int fail) goto err; ossl_quic_tserver_tick(qtserv); - if (!TEST_true(SSL_tick(cssl))) + if (!TEST_true(SSL_handle_events(cssl))) goto err; if (!TEST_int_eq(SSL_read(cssl, buf, sizeof(buf)), msglen)) |