From: Hugo Landau Date: Mon, 20 Mar 2023 16:27:08 +0000 (+0000) Subject: QUIC: Add history section to SSL_inject_net_dgram() X-Git-Tag: openssl-3.2.0-alpha1~1115 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=03fa5127ded6ba0dc9f178090eca0dbe70769c0e;p=thirdparty%2Fopenssl.git QUIC: Add history section to SSL_inject_net_dgram() Reviewed-by: Tomas Mraz Reviewed-by: Paul Dale (Merged from https://github.com/openssl/openssl/pull/20451) --- diff --git a/doc/man3/SSL_inject_net_dgram.pod b/doc/man3/SSL_inject_net_dgram.pod index 01714accb00..b859a316f0e 100644 --- a/doc/man3/SSL_inject_net_dgram.pod +++ b/doc/man3/SSL_inject_net_dgram.pod @@ -39,9 +39,13 @@ on a SSL object which is not a QUIC connection SSL object. L, L, L +=head1 HISTORY + +The function SSL_inject_net_dgram() was added in OpenSSL 3.2. + =head1 COPYRIGHT -Copyright 2000-2023 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2023 The OpenSSL Project Authors. All Rights Reserved. Licensed under the Apache License 2.0 (the "License"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/test/quic_tserver_test.c b/test/quic_tserver_test.c index 393b11172fb..9917093bf44 100644 --- a/test/quic_tserver_test.c +++ b/test/quic_tserver_test.c @@ -104,7 +104,7 @@ static int test_tserver(int test_kind) * In inject mode we create a dgram pair to feed to the QUIC client on * the read side. We don't feed anything to this, it is just a * placeholder to give the client something which never returns any - * datagrams.. + * datagrams. */ if (!TEST_true(BIO_new_bio_dgram_pair(&c_pair_own, 5000, &s_pair_own, 5000)))