From bafc58dfa45197b6214e3928de56fd36f21007f3 Mon Sep 17 00:00:00 2001 From: David Benjamin Date: Sun, 23 Nov 2014 00:10:53 -0500 Subject: [PATCH] Remove dead SSL BIO prototypes. Those aren't implemented. Change-Id: If4229f9cd2a8d333678a9cb35c4e857068794c49 Reviewed-on: https://boringssl-review.googlesource.com/2400 Reviewed-by: Adam Langley --- include/openssl/ssl.h | 9 --------- 1 file changed, 9 deletions(-) diff --git a/include/openssl/ssl.h b/include/openssl/ssl.h index 668508c4..72b19b94 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);