Lines Matching refs:L

23 stream is a QUIC stream to which calls to L<SSL_read(3)> and L<SSL_write(3)>
29 connection once L<SSL_read(3)> or L<SSL_write(3)> is called.
34 first. As such, if L<SSL_read(3)> is called first (before any call to
35 L<SSL_write(3)>) after establishing a connection, OpenSSL will wait for the
37 default stream. Conversely, if L<SSL_write(3)> is called before any call to
38 L<SSL_read(3)>, OpenSSL assumes the client wishes to transmit first, creates a
49 L<SSL_read(3)> and L<SSL_write(3)>) will fail.
58 after calling L<SSL_new(3)>, prior to initiating a connection. The argument
65 This is the default setting. If L<SSL_write(3)> is called prior to any call to
66 L<SSL_read(3)>, a bidirectional client-initiated stream is created and bound as
67 the default stream. If L<SSL_read(3)> is called prior to any call to
68 L<SSL_write(3)>, OpenSSL waits for an incoming stream from the peer (causing
69 L<SSL_read(3)> to block if the connection is in blocking mode), and then binds
72 presence of a bidirectional stream when L<SSL_read(3)> is called first. To
73 determine the type of a stream after a call to L<SSL_read(3)>, use
74 L<SSL_get_stream_type(3)>.
78 In this mode, if L<SSL_write(3)> is called prior to any call to L<SSL_read(3)>,
81 B<SSL_DEFAULT_STREAM_MODE_AUTO_BIDI>. The behaviour when L<SSL_read(3)> is
82 called prior to any call to L<SSL_write(3)> is unchanged.
87 L<SSL_read(3)> and L<SSL_write(3)> calls cannot be made on the QUIC connection
88 SSL object directly. You must obtain streams using L<SSL_new_stream(3)> or
89 L<SSL_accept_stream(3)> in order to communicate with the peer.
96 L<SSL_set_incoming_stream_policy(3)> interacts significantly with the default
111 L<SSL_new_stream(3)>, L<SSL_accept_stream(3)>, L<SSL_free(3)>,
112 L<SSL_set_incoming_stream_policy(3)>
125 L<https://www.openssl.org/source/license.html>.