Lines Matching refs:to
22 A QUIC connection SSL object may have a default stream attached to it. A default
23 stream is a QUIC stream to which calls to L<SSL_read(3)> and L<SSL_write(3)>
25 allows legacy applications to use QUIC similarly to a traditional TLS
32 server-initiated up front. This broadly corresponds to whether an application
34 first. As such, if L<SSL_read(3)> is called first (before any call to
36 server to open the first server-initiated stream, and then bind this as 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
42 stream is desired, or if the application wishes to disable default stream
43 functionality, SSL_set_default_stream_mode() (discussed below) can be used to
47 with it, for example because default stream functionality was disabled, calls to
55 SSL_set_default_stream_mode() can be used to configure or disable default stream
56 handling. It can only be called on a QUIC connection SSL object prior to any
57 default stream being created. If used, it is recommended to call it immediately
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
67 the default stream. If L<SSL_read(3)> is called prior to any call to
69 L<SSL_read(3)> to block if the connection is in blocking mode), and then binds
73 determine the type of a stream after a call to L<SSL_read(3)>, use
78 In this mode, if L<SSL_write(3)> is called prior to any call to L<SSL_read(3)>,
80 stream. The behaviour is otherwise identical to that of
82 called prior to any call to L<SSL_write(3)> is unchanged.
89 L<SSL_accept_stream(3)> in order to communicate with the peer.
94 object if the default stream mode is set to B<SSL_DEFAULT_STREAM_MODE_NONE>.