Lines Matching +full:background +full:- +full:layer
5 ossl-guide-quic-introduction
6 - OpenSSL Guide: An introduction to QUIC in OpenSSL
11 background and how it is used within OpenSSL. It assumes that you have a basic
13 some OpenSSL and TLS fundamentals (see L<ossl-guide-libraries-introduction(7)>
14 and L<ossl-guide-tls-introduction(7)>).
23 integrity and authentication (see L<ossl-guide-tls-introduction(7)>).
36 "head-of-line blocking"). It also enables an application to open additional
37 logical streams without requiring a round-trip exchange of packets between the
44 to use HTTP/3 using a suitable third-party library.
48 Future versions of OpenSSL will offer support for 0-RTT connection initiation,
50 transmitted without any waiting time. This is similar to TLS 1.3's 0-RTT
52 it is similar to a combination of TLS 1.3 0-RTT and TCP Fast Open.
62 allowing support for both TLS and DTLS-style use cases on a single connection.
75 Because QUIC is UDP-based, it is possible to multiplex a QUIC connection on the
76 same UDP socket as some other UDP-based protocols, such as RTP.
101 create a background thread and will regularly call L<SSL_handle_events(3)> in a
112 without using TLS - although some TLS handshake messages may still be sent in
129 effectively has one bi-directional stream available to it per TLS connection. A
130 QUIC application can have multiple uni-directional or bi-directional streams
148 TLS assumes "stream" type semantics for its underlying transport layer protocol
151 BIO to represent the underlying transport layer. This BIO must support datagrams
171 See L<ossl-guide-quic-client-block(7)> to see an example of applying these
174 See L<ossl-guide-quic-server-block(7)> to see an example of applying these
179 L<ossl-guide-introduction(7)>, L<ossl-guide-libraries-introduction(7)>,
180 L<ossl-guide-libssl-introduction(7)>, L<ossl-guide-tls-introduction(7)>,
181 L<ossl-guide-tls-client-block(7)>, L<ossl-guide-quic-client-block(7)>,
182 L<ossl-guide-quic-client-non-block(7)>, L<ossl-guide-quic-multi-stream(7)>,
183 L<ossl-guide-quic-server-block(7)>, L<ossl-guide-quic-server-non-block(7)>,
188 Copyright 2023-2025 The OpenSSL Project Authors. All Rights Reserved.