|
BIO_ctrl_get_read_request(3)
Contents
|
BIO_ctrl_get_read_request - Find out how many bytes were
requested from the BIO
#include <openssl/bio.h>
size_t BIO_ctrl_get_read_request(
BIO *bio );
The BIO_ctrl_get_read_request() function returns the number
of bytes that were last requested from bio by a
BIO_read() operation. This is useful for BIO pairs, for
example, so that the application knows how many bytes to
supply to bio.
When bio is NULL, the OpenSSL library calls assert().
The following return values can occur: The number of bytes
requested.
Functions: bio(3), BIO_s_mem(3), BIO_new_bio_pair(3)
BIO_ctrl_get_read_request(3)
[ Back ] |