Lines Matching refs:stream

7 SSL_is_stream_local - get QUIC stream ID and stream type information
25 The SSL_get_stream_id() function returns the QUIC stream ID for a QUIC stream
26 SSL object, or for a QUIC connection SSL object which has a default stream
30 on the stream, and returns one of the following values:
36 The SSL object is a QUIC connection SSL object without a default stream
41 The SSL object is a non-QUIC SSL object, or is a QUIC stream object (or QUIC
42 connection SSL object with a default stream attached), and that stream is a
43 bidirectional QUIC stream.
47 The SSL object is a QUIC stream object (or QUIC connection SSL object with a
48 default stream attached), and that stream is a unidirectional QUIC stream which
53 The SSL object is a QUIC stream object (or QUIC connection SSL object with a
54 default stream attached), and that stream is a unidirectional QUIC stream which
60 The SSL_is_stream_local() function determines whether a stream was locally
65 While QUICv1 assigns specific meaning to the low two bits of a QUIC stream ID,
66 QUIC stream IDs in future versions of QUIC are not required to have the same
67 semantics. Do not determine stream properties using these bits. Instead, use
68 SSL_get_stream_type() to determine the stream type and SSL_get_stream_is_local()
69 to determine the stream initiator.
71 The SSL_get_stream_type() identifies the type of a QUIC stream based on its
73 successfully performed on a stream. For example, you might locally initiate a
74 unidirectional stream, write to it, and then conclude the stream using
77 returned by SSL_get_stream_type() does not vary over the lifespan of a stream.
81 SSL_get_stream_id() returns a QUIC stream ID, or B<UINT64_MAX> if called on an
83 object without a default stream attached. Note that valid QUIC stream IDs are
88 SSL_is_stream_local() returns 1 if called on a QUIC stream SSL object which
89 represents a stream which was locally initiated. It returns 0 if called on a
90 QUIC stream SSL object which represents a stream which was remotely initiated by