Lines Matching refs:stream

6 SSL_STREAM_FLAG_ADVANCE - create a new locally-initiated QUIC stream
20 a new locally-initiated bidirectional or unidirectional QUIC stream and returns
21 the newly created QUIC stream SSL object.
23 If the B<SSL_STREAM_FLAG_UNI> flag is passed, a unidirectional stream is
24 created; else a bidirectional stream is created.
26 To retrieve the stream ID of the newly created stream, use
29 It is the caller's responsibility to free the QUIC stream SSL object using
31 of the QUIC stream SSL object; in other words, the QUIC stream SSL object must
34 Once a stream has been created using SSL_new_stream(), it may be used in the
37 This function can only be used to create stream objects for locally-initiated
41 Calling SSL_new_stream() if there is no default stream already present
42 inhibits the future creation of a default stream. See L<openssl-quic(7)>.
45 it is currently not possible to create a new locally initiated stream of the
47 is configured in blocking mode) until a new stream can be created, or otherwise
55 The flag B<SSL_STREAM_FLAG_ADVANCE> may be used to create a QUIC stream SSL
56 object even if a new QUIC stream cannot yet be opened due to flow control. The
57 caller may begin to use the new stream and fill the write buffer of the stream
58 by calling L<SSL_write(3)>. However, no actual stream data (or QUIC frames
59 regarding the stream) will be sent until QUIC flow control allows it. Any queued
60 data will be sent as soon as a peer permits it. There is no guarantee the stream
67 SSL_new_stream() returns a new stream object, or NULL on error.
69 This function fails if called on a QUIC stream SSL object or on a non-QUIC SSL