summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/man/BIO_f_null.3
diff options
context:
space:
mode:
authorschwarze <>2022-12-18 19:35:36 +0000
committerschwarze <>2022-12-18 19:35:36 +0000
commitf26ef0aa360dae497f219007f5241029c6f83cf0 (patch)
tree347e585185753dc753be34949f9b80aa126c76dd /src/lib/libcrypto/man/BIO_f_null.3
parent1ab199ddcad92be2f6a793e79c23b1387880332e (diff)
downloadopenbsd-f26ef0aa360dae497f219007f5241029c6f83cf0.tar.gz
openbsd-f26ef0aa360dae497f219007f5241029c6f83cf0.tar.bz2
openbsd-f26ef0aa360dae497f219007f5241029c6f83cf0.zip
new manual page BIO_dup_chain(3)
Diffstat (limited to 'src/lib/libcrypto/man/BIO_f_null.3')
-rw-r--r--src/lib/libcrypto/man/BIO_f_null.311
1 files changed, 8 insertions, 3 deletions
diff --git a/src/lib/libcrypto/man/BIO_f_null.3 b/src/lib/libcrypto/man/BIO_f_null.3
index 755f37dae7..a74726e1ff 100644
--- a/src/lib/libcrypto/man/BIO_f_null.3
+++ b/src/lib/libcrypto/man/BIO_f_null.3
@@ -1,5 +1,5 @@
1.\" $OpenBSD: BIO_f_null.3,v 1.9 2018/05/01 17:05:05 schwarze Exp $ 1.\" $OpenBSD: BIO_f_null.3,v 1.10 2022/12/18 19:35:36 schwarze Exp $
2.\" OpenSSL e117a890 Sep 14 12:14:41 2000 +0000 2.\" full merge up to: OpenSSL e9b77246 Jan 20 19:58:49 2017 +0100
3.\" 3.\"
4.\" This file was written by Dr. Stephen Henson <steve@openssl.org>. 4.\" This file was written by Dr. Stephen Henson <steve@openssl.org>.
5.\" Copyright (c) 2000 The OpenSSL Project. All rights reserved. 5.\" Copyright (c) 2000 The OpenSSL Project. All rights reserved.
@@ -48,7 +48,7 @@
48.\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 48.\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
49.\" OF THE POSSIBILITY OF SUCH DAMAGE. 49.\" OF THE POSSIBILITY OF SUCH DAMAGE.
50.\" 50.\"
51.Dd $Mdocdate: May 1 2018 $ 51.Dd $Mdocdate: December 18 2022 $
52.Dt BIO_F_NULL 3 52.Dt BIO_F_NULL 3
53.Os 53.Os
54.Sh NAME 54.Sh NAME
@@ -69,6 +69,11 @@ As may be apparent, a null filter BIO is not particularly useful.
69All requests to a null filter BIO are passed through to the next BIO 69All requests to a null filter BIO are passed through to the next BIO
70in the chain: this means that a BIO chain containing a null filter BIO 70in the chain: this means that a BIO chain containing a null filter BIO
71behaves just as though the BIO was not there. 71behaves just as though the BIO was not there.
72.Pp
73A chain containing a null filter BIO cannot be copied with
74.Xr BIO_dup_chain 3 ,
75and any attempt to do so fails and returns
76.Dv NULL .
72.Sh RETURN VALUES 77.Sh RETURN VALUES
73.Fn BIO_f_null 78.Fn BIO_f_null
74returns the null filter BIO method. 79returns the null filter BIO method.