Lines Matching +full:per +full:- +full:stream
5 ossl-guide-libssl-introduction, ssl
6 - OpenSSL Guide: An introduction to libssl
14 operations (see L<ossl-guide-libcrypto-introduction(7)>).
34 Both TLS and QUIC support the concept of a "stream" of data. Data sent via a
35 stream is guaranteed to be delivered in order without any data loss. A stream
36 can be uni- or bi-directional.
38 SSL/TLS only supports one stream of data per connection and it is always
39 bi-directional. In this case the B<SSL> object used for the connection also
40 represents that stream. See L<ossl-guide-tls-introduction(7)> for more
43 The QUIC protocol can support multiple streams per connection and they can be
44 uni- or bi-directional. In this case an B<SSL> object can represent the
45 underlying connection, or a stream, or both. Where multiple streams are in use
47 L<ossl-guide-quic-introduction(7)> for more information.
96 See L<ossl-guide-tls-introduction(7)> for an introduction to the SSL/TLS
97 protocol and L<ossl-guide-quic-introduction(7)> for an introduction to QUIC.
99 See L<ossl-guide-libcrypto-introduction(7)> for an introduction to C<libcrypto>.
103 L<ossl-guide-libcrypto-introduction(7)>, L<ossl-guide-tls-introduction(7)>,
104 L<ossl-guide-quic-introduction(7)>
108 Copyright 2000-2025 The OpenSSL Project Authors. All Rights Reserved.