summaryrefslogtreecommitdiffstats
path: root/doc/crypto/BIO_f_null.pod
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2000-09-10 17:36:15 +0000
committerDr. Stephen Henson <steve@openssl.org>2000-09-10 17:36:15 +0000
commit5fd0cd9a9b7ee101c93719b01c5fccf2ae5cee99 (patch)
treec5cbf9a7acf05275ed3e17a46dea7129c50ae7ec /doc/crypto/BIO_f_null.pod
parent97d8e82c4c622b8896e37634c6d4ee43ab6a4432 (diff)
More new BIO docs, correct some old ones.
Diffstat (limited to 'doc/crypto/BIO_f_null.pod')
-rw-r--r--doc/crypto/BIO_f_null.pod32
1 files changed, 32 insertions, 0 deletions
diff --git a/doc/crypto/BIO_f_null.pod b/doc/crypto/BIO_f_null.pod
new file mode 100644
index 0000000000..8156b51b8f
--- /dev/null
+++ b/doc/crypto/BIO_f_null.pod
@@ -0,0 +1,32 @@
+=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