summaryrefslogtreecommitdiffstats
path: root/ssl/bio_ssl.c
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2015-01-27 20:11:24 +0000
committerMatt Caswell <matt@openssl.org>2015-01-31 18:06:45 +0000
commitb6ba401497001c2f042feff693ed292b21c8369c (patch)
treeed417a48076160efdf98059557aa39368383baed /ssl/bio_ssl.c
parent4de8385796541c8c2973813f5da5fad173ba1ca2 (diff)
Make libssl opaque. Move all structures that were previously protected by
OPENSSL_NO_SSL_INTERN into internal header files. Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'ssl/bio_ssl.c')
-rw-r--r--ssl/bio_ssl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ssl/bio_ssl.c b/ssl/bio_ssl.c
index a0c583e342..458e071872 100644
--- a/ssl/bio_ssl.c
+++ b/ssl/bio_ssl.c
@@ -63,7 +63,7 @@
#include <openssl/crypto.h>
#include <openssl/bio.h>
#include <openssl/err.h>
-#include <openssl/ssl.h>
+#include "ssl_locl.h"
static int ssl_write(BIO *h, const char *buf, int num);
static int ssl_read(BIO *h, char *buf, int size);