Deleted Added
full compact
BIO_s_null.3 (273399) BIO_s_null.3 (279264)
1.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.28)
1.\" Automatically generated by Pod::Man 2.27 (Pod::Simple 3.28)
2.\"
3.\" Standard preamble:
4.\" ========================================================================
5.de Sp \" Vertical space (when we can't use .PP)
6.if t .sp .5v
7.if n .sp
8..
9.de Vb \" Begin verbatim text

--- 23 unchanged lines hidden (view full) ---

33. ds C` ""
34. ds C' ""
35'br\}
36.el\{\
37. ds -- \|\(em\|
38. ds PI \(*p
39. ds L" ``
40. ds R" ''
2.\"
3.\" Standard preamble:
4.\" ========================================================================
5.de Sp \" Vertical space (when we can't use .PP)
6.if t .sp .5v
7.if n .sp
8..
9.de Vb \" Begin verbatim text

--- 23 unchanged lines hidden (view full) ---

33. ds C` ""
34. ds C' ""
35'br\}
36.el\{\
37. ds -- \|\(em\|
38. ds PI \(*p
39. ds L" ``
40. ds R" ''
41. ds C`
42. ds C'
41'br\}
42.\"
43.\" Escape single quotes in literal strings from groff's Unicode transform.
44.ie \n(.g .ds Aq \(aq
45.el .ds Aq '
46.\"
47.\" If the F register is turned on, we'll generate index entries on stderr for
48.\" titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index
49.\" entries marked with X<> in POD. Of course, you'll have to process the
50.\" output yourself in some meaningful fashion.
43'br\}
44.\"
45.\" Escape single quotes in literal strings from groff's Unicode transform.
46.ie \n(.g .ds Aq \(aq
47.el .ds Aq '
48.\"
49.\" If the F register is turned on, we'll generate index entries on stderr for
50.\" titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index
51.\" entries marked with X<> in POD. Of course, you'll have to process the
52.\" output yourself in some meaningful fashion.
51.ie \nF \{\
52. de IX
53. tm Index:\\$1\t\\n%\t"\\$2"
53.\"
54.\" Avoid warning from groff about undefined register 'F'.
55.de IX
54..
56..
55. nr % 0
56. rr F
57.\}
58.el \{\
59. de IX
57.nr rF 0
58.if \n(.g .if rF .nr rF 1
59.if (\n(rF:(\n(.g==0)) \{
60. if \nF \{
61. de IX
62. tm Index:\\$1\t\\n%\t"\\$2"
60..
63..
64. if !\nF==2 \{
65. nr % 0
66. nr F 2
67. \}
68. \}
61.\}
69.\}
70.rr rF
62.\"
63.\" Accent mark definitions (@(#)ms.acc 1.5 88/02/08 SMI; from UCB 4.2).
64.\" Fear. Run. Save yourself. No user-serviceable parts.
65. \" fudge factors for nroff and troff
66.if n \{\
67. ds #H 0
68. ds #V .8m
69. ds #F .3m

--- 49 unchanged lines hidden (view full) ---

119. ds Th \o'LP'
120. ds ae ae
121. ds Ae AE
122.\}
123.rm #[ #] #H #V #F C
124.\" ========================================================================
125.\"
126.IX Title "BIO_s_null 3"
71.\"
72.\" Accent mark definitions (@(#)ms.acc 1.5 88/02/08 SMI; from UCB 4.2).
73.\" Fear. Run. Save yourself. No user-serviceable parts.
74. \" fudge factors for nroff and troff
75.if n \{\
76. ds #H 0
77. ds #V .8m
78. ds #F .3m

--- 49 unchanged lines hidden (view full) ---

128. ds Th \o'LP'
129. ds ae ae
130. ds Ae AE
131.\}
132.rm #[ #] #H #V #F C
133.\" ========================================================================
134.\"
135.IX Title "BIO_s_null 3"
127.TH BIO_s_null 3 "2014-10-15" "1.0.1j" "OpenSSL"
136.TH BIO_s_null 3 "2015-01-15" "1.0.1l" "OpenSSL"
128.\" For nroff, turn off justification. Always turn off hyphenation; it makes
129.\" way too many mistakes in technical documents.
130.if n .ad l
131.nh
132.SH "NAME"
133BIO_s_null \- null data sink
134.SH "SYNOPSIS"
135.IX Header "SYNOPSIS"
136.Vb 1
137\& #include <openssl/bio.h>
138\&
139\& BIO_METHOD * BIO_s_null(void);
140.Ve
141.SH "DESCRIPTION"
142.IX Header "DESCRIPTION"
143\&\fIBIO_s_null()\fR returns the null sink \s-1BIO\s0 method. Data written to
137.\" For nroff, turn off justification. Always turn off hyphenation; it makes
138.\" way too many mistakes in technical documents.
139.if n .ad l
140.nh
141.SH "NAME"
142BIO_s_null \- null data sink
143.SH "SYNOPSIS"
144.IX Header "SYNOPSIS"
145.Vb 1
146\& #include <openssl/bio.h>
147\&
148\& BIO_METHOD * BIO_s_null(void);
149.Ve
150.SH "DESCRIPTION"
151.IX Header "DESCRIPTION"
152\&\fIBIO_s_null()\fR returns the null sink \s-1BIO\s0 method. Data written to
144the null sink is discarded, reads return \s-1EOF\s0.
153the null sink is discarded, reads return \s-1EOF.\s0
145.SH "NOTES"
146.IX Header "NOTES"
147A null sink \s-1BIO\s0 behaves in a similar manner to the Unix /dev/null
148device.
149.PP
150A null bio can be placed on the end of a chain to discard any data
151passed through it.
152.PP
153A null sink is useful if, for example, an application wishes to digest some
154data by writing through a digest bio but not send the digested data anywhere.
155Since a \s-1BIO\s0 chain must normally include a source/sink \s-1BIO\s0 this can be achieved
156by adding a null sink \s-1BIO\s0 to the end of the chain
157.SH "RETURN VALUES"
158.IX Header "RETURN VALUES"
159\&\fIBIO_s_null()\fR returns the null sink \s-1BIO\s0 method.
160.SH "SEE ALSO"
161.IX Header "SEE ALSO"
162\&\s-1TBA\s0
154.SH "NOTES"
155.IX Header "NOTES"
156A null sink \s-1BIO\s0 behaves in a similar manner to the Unix /dev/null
157device.
158.PP
159A null bio can be placed on the end of a chain to discard any data
160passed through it.
161.PP
162A null sink is useful if, for example, an application wishes to digest some
163data by writing through a digest bio but not send the digested data anywhere.
164Since a \s-1BIO\s0 chain must normally include a source/sink \s-1BIO\s0 this can be achieved
165by adding a null sink \s-1BIO\s0 to the end of the chain
166.SH "RETURN VALUES"
167.IX Header "RETURN VALUES"
168\&\fIBIO_s_null()\fR returns the null sink \s-1BIO\s0 method.
169.SH "SEE ALSO"
170.IX Header "SEE ALSO"
171\&\s-1TBA\s0