Home
last modified time | relevance | path

Searched refs:stream1 (Results 1 – 6 of 6) sorted by relevance

/freebsd/crypto/openssl/demos/guide/
H A Dquic-multi-stream.c138 SSL *stream1 = NULL, *stream2 = NULL, *stream3 = NULL; in main() local
268 stream1 = SSL_new_stream(ssl, 0); in main()
270 if (stream1 == NULL || stream2 == NULL) { in main()
276 if (!write_a_request(stream1, request1_start, hostname)) { in main()
299 while (SSL_read_ex(stream1, buf, sizeof(buf), &readbytes)) { in main()
320 switch (SSL_get_error(stream1, 0)) { in main()
330 switch (SSL_get_stream_read_state(stream1)) { in main()
436 SSL_free(stream1); in main()
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/rsend/
H A Drsend-exclude_001_pos.ksh41 rm -f $BACKDIR/stream1
61 log_must zfs send -R --exclude ds1/sub1 $sendfs@A > $BACKDIR/stream1
62 log_must zfs recv -dFu $recvfs < $BACKDIR/stream1
H A Drsend-exclude_002_pos.ksh42 rm -f $BACKDIR/stream1
66 log_must zfs send -R --exclude $sendfs/enc $sendfs@A > $BACKDIR/stream1
67 log_must zfs recv -dFu $recvfs < $BACKDIR/stream1
H A Dsend-c_recv_dedup.ksh40 typeset stream1=$BACKDIR/stream.1
H A Drsend_031_pos.ksh39 rm $BACKDIR/stream1
/freebsd/crypto/openssl/doc/man7/
H A Dossl-guide-quic-multi-stream.pod206 stream1 = SSL_new_stream(ssl, 0);
208 if (stream1 == NULL || stream2 == NULL) {
239 this sequentially, writing to B<stream1> first and, when this is successful,
247 if (!write_a_request(stream1, request1_start, hostname)) {
259 In this example B<stream1> is a bi-directional stream so, once we have sent the
271 while (SSL_read_ex(stream1, buf, sizeof(buf), &readbytes)) {
308 switch (SSL_get_error(stream1, 0)) {
318 switch (SSL_get_stream_read_state(stream1)) {
368 We can now read data from the stream in the same way that we did for B<stream1>
383 SSL_free(stream1);