b9a3c2cf3fb298ff55cccb12497c5c2d1c9bf90a
[openssl.git] / doc / crypto / BIO_s_null.pod
1 =pod
2
3 =head1 NAME
4
5         BIO_s_null - null data sink
6
7 =head1 SYNOPSIS
8
9  #include <openssl/bio.h>
10
11  BIO_METHOD *   BIO_s_null(void);
12
13 =head1 DESCRIPTION
14
15 BIO_s_null() returns the null sink BIO method. Data written to
16 the null sink is discraded, reads return EOF.
17
18 =head1 NOTES
19
20 A null sink BIO behaves in a similar manner to the Unix /dev/null
21 device.
22
23 A null bio can be placed on the end of a chain to discard any data
24 passed through it.
25
26 A null sink is useful if, for example, an application wishes to digest some
27 data but not write the result anywhere. Since a BIO chain must normally
28 include a source/sink BIO this can be achieved by adding a null sink BIO
29 to the end of the chain
30
31 =head1 RETURN VALUES
32
33 BIO_s_null() returns the null sink BIO method.
34
35 =head1 SEE ALSO
36
37 TBA