aboutsummaryrefslogtreecommitdiff
path: root/openssl/vendor/0.9.8d/doc/crypto/BIO_f_null.pod
diff options
context:
space:
mode:
authorRob Austein <sra@hactrn.net>2006-10-09 16:22:20 +0000
committerRob Austein <sra@hactrn.net>2006-10-09 16:22:20 +0000
commit084adb601f2d375395c6cdcedf8af91f1065fe4e (patch)
treefcc9ae9597924b12b6ff7b5b7dbfb2b65f20fb29 /openssl/vendor/0.9.8d/doc/crypto/BIO_f_null.pod
parenteb9264fc2ef786e8c4e3d430834b9b9e9e0b9c0a (diff)
Feh, wrong vendor branch merge proceedure, clean up before trying again.
svn path=/openssl/vendor/0.9.8d; revision=374
Diffstat (limited to 'openssl/vendor/0.9.8d/doc/crypto/BIO_f_null.pod')
-rw-r--r--openssl/vendor/0.9.8d/doc/crypto/BIO_f_null.pod32
1 files changed, 0 insertions, 32 deletions
diff --git a/openssl/vendor/0.9.8d/doc/crypto/BIO_f_null.pod b/openssl/vendor/0.9.8d/doc/crypto/BIO_f_null.pod
deleted file mode 100644
index b057c184..00000000
--- a/openssl/vendor/0.9.8d/doc/crypto/BIO_f_null.pod
+++ /dev/null
@@ -1,32 +0,0 @@
-=pod
-
-=head1 NAME
-
-BIO_f_null - null filter
-
-=head1 SYNOPSIS
-
- #include <openssl/bio.h>
-
- BIO_METHOD * BIO_f_null(void);
-
-=head1 DESCRIPTION
-
-BIO_f_null() returns the null filter BIO method. This is a filter BIO
-that does nothing.
-
-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.
-
-=head1 NOTES
-
-As may be apparent a null filter BIO is not particularly useful.
-
-=head1 RETURN VALUES
-
-BIO_f_null() returns the null filter BIO method.
-
-=head1 SEE ALSO
-
-TBA