Allow IPv6 address entry in tools>ping - Loosens valid character check
[tomato/davidwu.git] / release / src / router / openssl / doc / crypto / BIO_s_null.pod
blobe5514f723898c4d51beb37cd083ae04db2d514a5
1 =pod
3 =head1 NAME
5 BIO_s_null - null data sink
7 =head1 SYNOPSIS
9  #include <openssl/bio.h>
11  BIO_METHOD *   BIO_s_null(void);
13 =head1 DESCRIPTION
15 BIO_s_null() returns the null sink BIO method. Data written to
16 the null sink is discarded, reads return EOF.
18 =head1 NOTES
20 A null sink BIO behaves in a similar manner to the Unix /dev/null
21 device.
23 A null bio can be placed on the end of a chain to discard any data
24 passed through it.
26 A null sink is useful if, for example, an application wishes to digest some
27 data by writing through a digest bio but not send the digested data anywhere.
28 Since a BIO chain must normally include a source/sink BIO this can be achieved
29 by adding a null sink BIO to the end of the chain
31 =head1 RETURN VALUES
33 BIO_s_null() returns the null sink BIO method.
35 =head1 SEE ALSO
37 TBA