Add missing OPENSSL_EXPORTs.
Forgot to export those when adding them.
Change-Id: I206f488eb38e5ff55b8c212911aced0cf28b7664
Reviewed-on: https://boringssl-review.googlesource.com/3090
Reviewed-by: Adam Langley <agl@google.com>
diff --git a/include/openssl/ssl.h b/include/openssl/ssl.h
index 6197988..649e38f 100644
--- a/include/openssl/ssl.h
+++ b/include/openssl/ssl.h
@@ -514,19 +514,19 @@
/* SSL_CTX_set_min_version sets the minimum protocol version for |ctx| to
* |version|. */
-void SSL_CTX_set_min_version(SSL_CTX *ctx, uint16_t version);
+OPENSSL_EXPORT void SSL_CTX_set_min_version(SSL_CTX *ctx, uint16_t version);
/* SSL_CTX_set_max_version sets the maximum protocol version for |ctx| to
* |version|. */
-void SSL_CTX_set_max_version(SSL_CTX *ctx, uint16_t version);
+OPENSSL_EXPORT void SSL_CTX_set_max_version(SSL_CTX *ctx, uint16_t version);
/* SSL_set_min_version sets the minimum protocol version for |ssl| to
* |version|. */
-void SSL_set_min_version(SSL *ssl, uint16_t version);
+OPENSSL_EXPORT void SSL_set_min_version(SSL *ssl, uint16_t version);
/* SSL_set_max_version sets the maximum protocol version for |ssl| to
* |version|. */
-void SSL_set_max_version(SSL *ssl, uint16_t version);
+OPENSSL_EXPORT void SSL_set_max_version(SSL *ssl, uint16_t version);
OPENSSL_EXPORT void SSL_CTX_set_msg_callback(
SSL_CTX *ctx, void (*cb)(int write_p, int version, int content_type,