aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorDavid Benjamin <davidben@chromium.org>2014-11-23 00:10:53 -0500
committerAdam Langley <agl@google.com>2014-12-02 19:26:47 +0000
commitbafc58dfa45197b6214e3928de56fd36f21007f3 (patch)
tree9f549ddb7b0aaf034a551eb39abc1f430231fecb /include
parent0f1e64bf7f36a9610cb3072add579c8e4850cdf5 (diff)
downloadboringssl-bafc58dfa45197b6214e3928de56fd36f21007f3.zip
boringssl-bafc58dfa45197b6214e3928de56fd36f21007f3.tar.gz
boringssl-bafc58dfa45197b6214e3928de56fd36f21007f3.tar.bz2
Remove dead SSL BIO prototypes.
Those aren't implemented. Change-Id: If4229f9cd2a8d333678a9cb35c4e857068794c49 Reviewed-on: https://boringssl-review.googlesource.com/2400 Reviewed-by: Adam Langley <agl@google.com>
Diffstat (limited to 'include')
-rw-r--r--include/openssl/ssl.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/include/openssl/ssl.h b/include/openssl/ssl.h
index 668508c..72b19b9 100644
--- a/include/openssl/ssl.h
+++ b/include/openssl/ssl.h
@@ -1814,15 +1814,6 @@ DECLARE_PEM_rw(SSL_SESSION, SSL_SESSION)
#define SSL_enable_fallback_scsv(s) \
SSL_ctrl(s, SSL_CTRL_FALLBACK_SCSV, 0, NULL)
-#ifndef OPENSSL_NO_BIO
-OPENSSL_EXPORT BIO_METHOD *BIO_f_ssl(void);
-OPENSSL_EXPORT BIO *BIO_new_ssl(SSL_CTX *ctx,int client);
-OPENSSL_EXPORT BIO *BIO_new_ssl_connect(SSL_CTX *ctx);
-OPENSSL_EXPORT BIO *BIO_new_buffer_ssl_connect(SSL_CTX *ctx);
-OPENSSL_EXPORT void BIO_ssl_shutdown(BIO *ssl_bio);
-
-#endif
-
OPENSSL_EXPORT int SSL_CTX_set_cipher_list(SSL_CTX *,const char *str);
OPENSSL_EXPORT int SSL_CTX_set_cipher_list_tls11(SSL_CTX *,const char *str);
OPENSSL_EXPORT SSL_CTX *SSL_CTX_new(const SSL_METHOD *meth);