From d07aee2c7a33e77d97d8e13811af3637e3849cb2 Mon Sep 17 00:00:00 2001 From: Matt Caswell Date: Mon, 5 Sep 2016 17:26:58 +0100 Subject: 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 --- crypto/bio/bss_conn.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'crypto/bio/bss_conn.c') diff --git a/crypto/bio/bss_conn.c b/crypto/bio/bss_conn.c index dfd0988dfb..eff3f68144 100644 --- a/crypto/bio/bss_conn.c +++ b/crypto/bio/bss_conn.c @@ -59,6 +59,8 @@ static const BIO_METHOD methods_connectp = { BIO_TYPE_CONNECT, "socket connect", conn_write, + /* TODO: Convert to new style read function */ + bread_conv, conn_read, conn_puts, NULL, /* connect_gets, */ -- cgit v1.2.3