diff options
author | schwarze <> | 2015-02-14 14:09:01 +0000 |
---|---|---|
committer | schwarze <> | 2015-02-14 14:09:01 +0000 |
commit | 88853a20be023939d14cfde9e86a81bfcc75ef7b (patch) | |
tree | 14e96de4625e6c5d8612c27a513ebf5ed519b352 /src/lib/libcrypto/man/BIO_f_null.3 | |
parent | 948b14a55ded39aea589e34e23c19085fd99cac5 (diff) | |
download | openbsd-88853a20be023939d14cfde9e86a81bfcc75ef7b.tar.gz openbsd-88853a20be023939d14cfde9e86a81bfcc75ef7b.tar.bz2 openbsd-88853a20be023939d14cfde9e86a81bfcc75ef7b.zip |
second batch of perlpod(1) to mdoc(7) conversion
Diffstat (limited to 'src/lib/libcrypto/man/BIO_f_null.3')
-rw-r--r-- | src/lib/libcrypto/man/BIO_f_null.3 | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/lib/libcrypto/man/BIO_f_null.3 b/src/lib/libcrypto/man/BIO_f_null.3 new file mode 100644 index 0000000000..a09cc77631 --- /dev/null +++ b/src/lib/libcrypto/man/BIO_f_null.3 | |||
@@ -0,0 +1,25 @@ | |||
1 | .Dd July 17, 2014 | ||
2 | .Dt BIO_F_NULL 3 | ||
3 | .Os | ||
4 | .Sh NAME | ||
5 | .Nm BIO_f_null | ||
6 | .Nd null filter | ||
7 | .Sh SYNOPSIS | ||
8 | .In openssl/bio.h | ||
9 | .Ft BIO_METHOD * | ||
10 | .Fo BIO_f_null | ||
11 | .Fa void | ||
12 | .Fc | ||
13 | .Sh DESCRIPTION | ||
14 | .Fn BIO_f_null | ||
15 | returns the null filter BIO method. | ||
16 | This is a filter BIO that does nothing. | ||
17 | .Pp | ||
18 | All requests to a null filter BIO are passed through to the next BIO | ||
19 | in the chain: this means that a BIO chain containing a null filter BIO | ||
20 | behaves just as though the BIO was not there. | ||
21 | .Sh NOTES | ||
22 | As may be apparent, a null filter BIO is not particularly useful. | ||
23 | .Sh RETURN VALUES | ||
24 | .Fn BIO_f_null | ||
25 | returns the null filter BIO method. | ||