From: Matt Caswell Date: Fri, 11 Aug 2023 15:15:43 +0000 (+0100) Subject: Add an initial guide page for writing a multi-stream QUIC client X-Git-Tag: openssl-3.2.0-alpha1~157 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=344ae0f39afa0b4cc352eac64d6e7d25bb37e9bd;p=thirdparty%2Fopenssl.git Add an initial guide page for writing a multi-stream QUIC client Reviewed-by: Tomas Mraz Reviewed-by: Hugo Landau (Merged from https://github.com/openssl/openssl/pull/21765) --- diff --git a/doc/build.info b/doc/build.info index 958bbd0d1a0..5af90ed5b29 100644 --- a/doc/build.info +++ b/doc/build.info @@ -4783,6 +4783,10 @@ DEPEND[html/man7/ossl-guide-quic-introduction.html]=man7/ossl-guide-quic-introdu GENERATE[html/man7/ossl-guide-quic-introduction.html]=man7/ossl-guide-quic-introduction.pod DEPEND[man/man7/ossl-guide-quic-introduction.7]=man7/ossl-guide-quic-introduction.pod GENERATE[man/man7/ossl-guide-quic-introduction.7]=man7/ossl-guide-quic-introduction.pod +DEPEND[html/man7/ossl-guide-quic-multi-stream.html]=man7/ossl-guide-quic-multi-stream.pod +GENERATE[html/man7/ossl-guide-quic-multi-stream.html]=man7/ossl-guide-quic-multi-stream.pod +DEPEND[man/man7/ossl-guide-quic-multi-stream.7]=man7/ossl-guide-quic-multi-stream.pod +GENERATE[man/man7/ossl-guide-quic-multi-stream.7]=man7/ossl-guide-quic-multi-stream.pod DEPEND[html/man7/ossl-guide-tls-client-block.html]=man7/ossl-guide-tls-client-block.pod GENERATE[html/man7/ossl-guide-tls-client-block.html]=man7/ossl-guide-tls-client-block.pod DEPEND[man/man7/ossl-guide-tls-client-block.7]=man7/ossl-guide-tls-client-block.pod @@ -5000,6 +5004,7 @@ html/man7/ossl-guide-libssl-introduction.html \ html/man7/ossl-guide-migration.html \ html/man7/ossl-guide-quic-client-block.html \ html/man7/ossl-guide-quic-introduction.html \ +html/man7/ossl-guide-quic-multi-stream.html \ html/man7/ossl-guide-tls-client-block.html \ html/man7/ossl-guide-tls-introduction.html \ html/man7/ossl_store-file.html \ @@ -5139,6 +5144,7 @@ man/man7/ossl-guide-libssl-introduction.7 \ man/man7/ossl-guide-migration.7 \ man/man7/ossl-guide-quic-client-block.7 \ man/man7/ossl-guide-quic-introduction.7 \ +man/man7/ossl-guide-quic-multi-stream.7 \ man/man7/ossl-guide-tls-client-block.7 \ man/man7/ossl-guide-tls-introduction.7 \ man/man7/ossl_store-file.7 \ diff --git a/doc/man7/ossl-guide-quic-multi-stream.pod b/doc/man7/ossl-guide-quic-multi-stream.pod new file mode 100644 index 00000000000..030792ce431 --- /dev/null +++ b/doc/man7/ossl-guide-quic-multi-stream.pod @@ -0,0 +1,36 @@ +=pod + +=begin comment + +NB: Changes to the source code samples in this file should also be reflected in +demos/guide/quic-multi-stream.c + +=end comment + +=head1 NAME + +ossl-guide-quic-multi-stream +- OpenSSL Guide: Writing a simple multi-stream QUIC client + +=head1 SIMPLE MULTI-STREAM QUIC CLIENT EXAMPLE + +CONTENT HERE + + + +=head1 SEE ALSO + +L, L, +L L, +L + +=head1 COPYRIGHT + +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 +in the file LICENSE in the source distribution or at +L. + +=cut