diff options
author | Matt Caswell <matt@openssl.org> | 2016-09-05 17:26:58 +0100 |
---|---|---|
committer | Matt Caswell <matt@openssl.org> | 2016-10-28 09:48:54 +0100 |
commit | d07aee2c7a33e77d97d8e13811af3637e3849cb2 (patch) | |
tree | 1c3452687dbd734f4e739713f29fbf770f5524dd /crypto/bio/bf_null.c | |
parent | 229bd12487f8576fc088dc4f641950ac33c62033 (diff) | |
download | openssl-new-d07aee2c7a33e77d97d8e13811af3637e3849cb2.tar.gz |
Create BIO_read_ex() which handles size_t arguments
Also extend BIO_METHOD to be able to supply an implementation for the new
BIO_read function.
Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'crypto/bio/bf_null.c')
-rw-r--r-- | crypto/bio/bf_null.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/crypto/bio/bf_null.c b/crypto/bio/bf_null.c index 0736b3f2fc..ed7bd98d75 100644 --- a/crypto/bio/bf_null.c +++ b/crypto/bio/bf_null.c @@ -28,6 +28,8 @@ static const BIO_METHOD methods_nullf = { BIO_TYPE_NULL_FILTER, "NULL filter", nullf_write, + /* TODO: Convert to new style read function */ + bread_conv, nullf_read, nullf_puts, nullf_gets, |