Lines Matching +full:double +full:- +full:buffering

18 .\" Set up some character translations and predefined strings.  \*(-- will
20 .\" double quote, and \*(R" will give a right double quote. \*(C+ will
24 .tr \(*W-
27 . ds -- \(*W-
29 . if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch
30 . if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch
37 . ds -- \|\(em\|
71 .\" Fear. Run. Save yourself. No user-serviceable parts.
81 . ds #H ((1u-(\\\\n(.fu%2u))*.13m)
97 . ds ' \\k:\h'-(\\n(.wu*8/10-\*(#H)'\'\h"|\\n:u"
98 . ds ` \\k:\h'-(\\n(.wu*8/10-\*(#H)'\`\h'|\\n:u'
99 . ds ^ \\k:\h'-(\\n(.wu*10/11-\*(#H)'^\h'|\\n:u'
100 . ds , \\k:\h'-(\\n(.wu*8/10)',\h'|\\n:u'
101 . ds ~ \\k:\h'-(\\n(.wu-\*(#H-.1m)'~\h'|\\n:u'
102 . ds / \\k:\h'-(\\n(.wu*8/10-\*(#H)'\z\(sl\h'|\\n:u'
104 . \" troff and (daisy-wheel) nroff accents
123 . ds d- d\h'-1'\(ga
124 . ds D- D\h'-1'\(hy
134 .TH SSL_WRITE 3ossl "2023-09-19" "3.0.11" "OpenSSL"
140 SSL_write_ex, SSL_write, SSL_sendfile \- write bytes to a TLS/SSL connection
157 descriptor \fBfd\fR to the specified \s-1SSL\s0 connection \fBs\fR. This function provides
158 efficient zero-copy semantics. \fBSSL_sendfile()\fR is available only when
159 Kernel \s-1TLS\s0 is enabled, which can be checked by calling \fBBIO_get_ktls_send()\fR.
168 If necessary, a write function will negotiate a \s-1TLS/SSL\s0 session, if not already
170 requests a re-negotiation, it will be performed transparently during
172 underlying \s-1BIO.\s0
179 If the underlying \s-1BIO\s0 is \fBblocking\fR, the write functions will only return, once
182 If the underlying \s-1BIO\s0 is \fBnonblocking\fR the write functions will also return
183 when the underlying \s-1BIO\s0 could not satisfy the needs of the function to continue
185 return value of the write function will yield \fB\s-1SSL_ERROR_WANT_READ\s0\fR
186 or \fB\s-1SSL_ERROR_WANT_WRITE\s0\fR. As at any time a re-negotiation is possible, a
189 of the write function. The action depends on the underlying \s-1BIO.\s0 When using a
191 for the required condition. When using a buffering \s-1BIO,\s0 like a \s-1BIO\s0 pair, data
192 must be written into or retrieved out of the \s-1BIO\s0 before being able to continue.
196 with the \s-1SSL_MODE_ENABLE_PARTIAL_WRITE\s0 option of \fBSSL_CTX_set_mode\fR\|(3). When
205 returned \fB\s-1SSL_ERROR_WANT_READ\s0\fR or \fB\s-1SSL_ERROR_WANT_WRITE\s0\fR, it must be repeated
208 When \fB\s-1SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER\s0\fR was set using \fBSSL_CTX_set_mode\fR\|(3)
217 all requested application data bytes have been written to the \s-1SSL\s0 connection or,
218 if \s-1SSL_MODE_ENABLE_PARTIAL_WRITE\s0 is in use, at least 1 application data byte has
219 been written to the \s-1SSL\s0 connection. Failure means that not all the requested
220 bytes have been written yet (if \s-1SSL_MODE_ENABLE_PARTIAL_WRITE\s0 is not in use) or
221 no bytes could be written to the \s-1SSL\s0 connection (if
222 \&\s-1SSL_MODE_ENABLE_PARTIAL_WRITE\s0 is in use). Failures can be retryable (e.g. the
223 network write buffer has temporarily filled up) or non-retryable (e.g. a fatal
231 bytes actually written to the \s-1TLS/SSL\s0 connection.
238 Old documentation indicated a difference between 0 and \-1, and that \-1 was
246 of bytes of the file written to the \s-1TLS/SSL\s0 connection. The return
266 Copyright 2000\-2021 The OpenSSL Project Authors. All Rights Reserved.
270 in the file \s-1LICENSE\s0 in the source distribution or at