Blame doc/man3/BIO_f_null.pod

Packit c4476c
=pod
Packit c4476c
Packit c4476c
=head1 NAME
Packit c4476c
Packit c4476c
BIO_f_null - null filter
Packit c4476c
Packit c4476c
=head1 SYNOPSIS
Packit c4476c
Packit c4476c
 #include <openssl/bio.h>
Packit c4476c
Packit c4476c
 const BIO_METHOD *BIO_f_null(void);
Packit c4476c
Packit c4476c
=head1 DESCRIPTION
Packit c4476c
Packit c4476c
BIO_f_null() returns the null filter BIO method. This is a filter BIO
Packit c4476c
that does nothing.
Packit c4476c
Packit c4476c
All requests to a null filter BIO are passed through to the next BIO in
Packit c4476c
the chain: this means that a BIO chain containing a null filter BIO
Packit c4476c
behaves just as though the BIO was not there.
Packit c4476c
Packit c4476c
=head1 NOTES
Packit c4476c
Packit c4476c
As may be apparent a null filter BIO is not particularly useful.
Packit c4476c
Packit c4476c
=head1 RETURN VALUES
Packit c4476c
Packit c4476c
BIO_f_null() returns the null filter BIO method.
Packit c4476c
Packit c4476c
=head1 COPYRIGHT
Packit c4476c
Packit c4476c
Copyright 2000-2016 The OpenSSL Project Authors. All Rights Reserved.
Packit c4476c
Packit c4476c
Licensed under the OpenSSL license (the "License").  You may not use
Packit c4476c
this file except in compliance with the License.  You can obtain a copy
Packit c4476c
in the file LICENSE in the source distribution or at
Packit c4476c
L<https://www.openssl.org/source/license.html>.
Packit c4476c
Packit c4476c
=cut