diff options
author | Matt Caswell <matt@openssl.org> | 2016-03-22 10:21:29 +0100 |
---|---|---|
committer | Matt Caswell <matt@openssl.org> | 2016-03-29 18:40:54 +0200 |
commit | a146ae55ba479a5c7aa2a6afba1b2b93102a152c (patch) | |
tree | 4c0803ebfed56f2a4ff59725a763cdc78bcf0379 /crypto/bio/bss_null.c | |
parent | Add functions for creating BIO_METHODs (diff) | |
download | openssl-a146ae55ba479a5c7aa2a6afba1b2b93102a152c.tar.xz openssl-a146ae55ba479a5c7aa2a6afba1b2b93102a152c.zip |
Make BIO opaque
Move the the BIO_METHOD and BIO structures into internal header files,
provide appropriate accessor methods and update all internal code to use
the new accessors where appropriate.
Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'crypto/bio/bss_null.c')
-rw-r--r-- | crypto/bio/bss_null.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/bio/bss_null.c b/crypto/bio/bss_null.c index c5e24844d1..29561c7326 100644 --- a/crypto/bio/bss_null.c +++ b/crypto/bio/bss_null.c @@ -57,8 +57,8 @@ #include <stdio.h> #include <errno.h> +#include "bio_lcl.h" #include "internal/cryptlib.h" -#include <openssl/bio.h> static int null_write(BIO *h, const char *buf, int num); static int null_read(BIO *h, char *buf, int size); |