Searched refs:readbytes (Results 1 – 5 of 5) sorted by relevance
| /demos/guide/ |
| A D | quic-multi-stream.c | 147 size_t readbytes; in main() local 301 while (SSL_read_ex(stream1, buf, sizeof(buf), &readbytes)) { in main() 309 fwrite(buf, 1, readbytes, stdout); in main() 378 while (SSL_read_ex(stream3, buf, sizeof(buf), &readbytes)) in main() 379 fwrite(buf, 1, readbytes, stdout); in main()
|
| A D | tls-client-block.c | 109 size_t written, readbytes; in main() local 233 while (SSL_read_ex(ssl, buf, sizeof(buf), &readbytes)) { in main() 241 fwrite(buf, 1, readbytes, stdout); in main()
|
| A D | quic-client-block.c | 127 size_t written, readbytes; in main() local 256 while (SSL_read_ex(ssl, buf, sizeof(buf), &readbytes)) { in main() 264 fwrite(buf, 1, readbytes, stdout); in main()
|
| A D | tls-client-non-block.c | 186 size_t written, readbytes = 0; in main() local 314 while (!eof && !SSL_read_ex(ssl, buf, sizeof(buf), &readbytes)) { in main() 335 fwrite(buf, 1, readbytes, stdout); in main()
|
| A D | quic-client-non-block.c | 234 size_t written, readbytes = 0; in main() local 377 while (!eof && !SSL_read_ex(ssl, buf, sizeof(buf), &readbytes)) { in main() 398 fwrite(buf, 1, readbytes, stdout); in main()
|
Completed in 19 milliseconds