Lines Matching full:streams
22 =head1 QUIC STREAMS
31 Separately a connection can have zero or more streams associated with it
32 (although a connection with zero streams is probably not very useful, so
35 object. A stream is logically independent of all the other streams associated
38 streams, e.g. if an application sends data on stream 1 first and then sends some
45 L</CREATING NEW STREAMS> below).
77 =head1 CREATING NEW STREAMS
87 The peer may also initiate streams. An application can use the function
88 L<SSL_get_accept_stream_queue_len(3)> to determine the number of streams that
95 When using a default stream OpenSSL will prevent new streams from being
139 =head1 STREAMS AND CONNECTIONS
187 * We will use multiple streams so we will disable the default stream mode.
188 * This is not a requirement for using multiple streams but is recommended.
195 =head2 Creating the request streams
197 For the purposes of this example we will create two different streams to send
203 * We create two new client initiated streams. The first will be
209 printf("Failed to create streams\n");
213 =head2 Writing data to the streams
215 Once the streams are successfully created we can start writing data to them. In
238 the requests on the two streams. For the sake of simplicity this example does
246 /* Write an HTTP GET request on each of our streams to the peer */
371 =head2 Cleaning up the streams
373 Once we have finished using our streams we can simply free them by calling
381 objects since those calls should not be used for streams.