Import OpenSSL-0.9.8i.
[dragonfly.git] / crypto / openssl-0.9.7e / doc / crypto / BIO_f_null.pod
blobb057c1840832f1629549523b35a9c078cad9a478
1 =pod
3 =head1 NAME
5 BIO_f_null - null filter
7 =head1 SYNOPSIS
9  #include <openssl/bio.h>
11  BIO_METHOD *   BIO_f_null(void);
13 =head1 DESCRIPTION
15 BIO_f_null() returns the null filter BIO method. This is a filter BIO
16 that does nothing.
18 All requests to a null filter BIO are passed through to the next BIO in
19 the chain: this means that a BIO chain containing a null filter BIO
20 behaves just as though the BIO was not there.
22 =head1 NOTES
24 As may be apparent a null filter BIO is not particularly useful.
26 =head1 RETURN VALUES
28 BIO_f_null() returns the null filter BIO method.
30 =head1 SEE ALSO
32 TBA