blob: 3f75d6286ae50af93b3c891e4aa3b0962957f960 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
.Dd $Mdocdate: September 9 2015 $
.Dt BIO_F_NULL 3
.Os
.Sh NAME
.Nm BIO_f_null
.Nd null filter
.Sh SYNOPSIS
.In openssl/bio.h
.Ft BIO_METHOD *
.Fo BIO_f_null
.Fa void
.Fc
.Sh DESCRIPTION
.Fn BIO_f_null
returns the null filter BIO method.
This is a filter BIO that does nothing.
.Pp
All requests to a null filter BIO are passed through to the next BIO
in the chain: this means that a BIO chain containing a null filter BIO
behaves just as though the BIO was not there.
.Sh NOTES
As may be apparent, a null filter BIO is not particularly useful.
.Sh RETURN VALUES
.Fn BIO_f_null
returns the null filter BIO method.
|