Lines Matching refs:stream

7 SSL_DEFAULT_STREAM_MODE_AUTO_UNI - manage the default stream for a QUIC
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)>
24 made on a QUIC connection SSL object are redirected. Default stream handling
28 When not disabled, a default stream is automatically created on an outgoing
31 A QUIC stream must be explicitly designated as client-initiated or
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
39 client-initiated stream, and binds this as the default stream.
41 By default, the default stream created is bidirectional. If a unidirectional
42 stream is desired, or if the application wishes to disable default stream
46 When a QUIC connection SSL object has no default stream currently associated
47 with it, for example because default stream functionality was disabled, calls to
48 functions which require a stream on the QUIC connection SSL object (for example,
52 streams forego use of the default stream functionality, which is intended for
55 SSL_set_default_stream_mode() can be used to configure or disable default stream
57 default stream being created. If used, it is recommended to call it immediately
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
70 that stream as the default stream. Note that this incoming stream may be either
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
79 a unidirectional client-initiated stream is created and bound as the default
80 stream. The behaviour is otherwise identical to that of
86 Default stream creation is inhibited. This is the recommended mode of operation.
93 A default stream will not be automatically created on a QUIC connection SSL
94 object if the default stream mode is set to B<SSL_DEFAULT_STREAM_MODE_NONE>.
97 stream functionality.
103 SSL_set_default_stream_mode() fails if it is called after a default stream has
106 These functions fail if called on a QUIC stream SSL object or on a non-QUIC SSL