summaryrefslogtreecommitdiffstats
path: root/doc/crypto/BIO_new.pod
diff options
context:
space:
mode:
Diffstat (limited to 'doc/crypto/BIO_new.pod')
-rw-r--r--doc/crypto/BIO_new.pod9
1 files changed, 6 insertions, 3 deletions
diff --git a/doc/crypto/BIO_new.pod b/doc/crypto/BIO_new.pod
index 226f13feef..006cf5925c 100644
--- a/doc/crypto/BIO_new.pod
+++ b/doc/crypto/BIO_new.pod
@@ -2,7 +2,8 @@
=head1 NAME
-BIO_new, BIO_set, BIO_up_ref, BIO_free, BIO_vfree, BIO_free_all - BIO allocation and freeing functions
+BIO_new, BIO_up_ref, BIO_free, BIO_vfree, BIO_free_all,
+BIO_set - BIO allocation and freeing functions
=head1 SYNOPSIS
@@ -19,8 +20,6 @@ BIO_new, BIO_set, BIO_up_ref, BIO_free, BIO_vfree, BIO_free_all - BIO allocation
The BIO_new() function returns a new BIO using method B<type>.
-BIO_set() sets the method of an already existing BIO.
-
BIO_up_ref() increments the reference count associated with the BIO object.
BIO_free() frees up a single BIO, BIO_vfree() also frees up a single BIO
@@ -51,6 +50,10 @@ in a memory leak.
Calling BIO_free_all() on a single BIO has the same effect as calling BIO_free()
on it other than the discarded return value.
+=head1 HISTORY
+
+BIO_set() was removed in OpenSSL 1.1.0 as BIO type is now opaque.
+
=head1 EXAMPLE
Create a memory BIO: