We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d725420 commit ded7cb0Copy full SHA for ded7cb0
1 file changed
ext/openssl/ossl_ssl.c
@@ -1724,6 +1724,10 @@ ossl_ssl_setup(VALUE self)
1724
if (!bio)
1725
ossl_raise(eSSLError, "BIO_new(ossl_bio_meth)");
1726
BIO_set_data(bio, (void *)io);
1727
+#if OSSL_IS_LIBRESSL
1728
+ // Incompatibility with OpenSSL?
1729
+ BIO_set_init(bio, 1);
1730
+#endif
1731
// Returns void currently (but wouldn't it be technically possible to fail?)
1732
SSL_set_bio(ssl, bio, bio);
1733
}
0 commit comments