BIO_f_null.pod 916 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. =pod
  2. =head1 NAME
  3. BIO_f_null - null filter
  4. =head1 SYNOPSIS
  5. #include <openssl/bio.h>
  6. const BIO_METHOD *BIO_f_null(void);
  7. =head1 DESCRIPTION
  8. BIO_f_null() returns the null filter BIO method. This is a filter BIO
  9. that does nothing.
  10. All requests to a null filter BIO are passed through to the next BIO in
  11. the chain: this means that a BIO chain containing a null filter BIO
  12. behaves just as though the BIO was not there.
  13. =head1 NOTES
  14. As may be apparent a null filter BIO is not particularly useful.
  15. =head1 RETURN VALUES
  16. BIO_f_null() returns the null filter BIO method.
  17. =head1 COPYRIGHT
  18. Copyright 2000-2016 The OpenSSL Project Authors. All Rights Reserved.
  19. Licensed under the Apache License 2.0 (the "License"). You may not use
  20. this file except in compliance with the License. You can obtain a copy
  21. in the file LICENSE in the source distribution or at
  22. L<https://www.openssl.org/source/license.html>.
  23. =cut