1 .\" $NetBSD: libcrypto.pl,v 1.3 2007/11/27 22:16:03 christos Exp $
3 .\" Automatically generated by Pod::Man 2.16 (Pod::Simple 3.05)
6 .\" ========================================================================
7 .de Sh \" Subsection heading
15 .de Sp \" Vertical space (when we can't use .PP)
19 .de Vb \" Begin verbatim text
24 .de Ve \" End verbatim text
28 .\" Set up some character translations and predefined strings. \*(-- will
29 .\" give an unbreakable dash, \*(PI will give pi, \*(L" will give a left
30 .\" double quote, and \*(R" will give a right double quote. \*(C+ will
31 .\" give a nicer C++. Capital omega is used to do unbreakable dashes and
32 .\" therefore won't be available. \*(C` and \*(C' expand to `' in nroff,
33 .\" nothing in troff, for use with C<>.
35 .ds C+ C\v'-.1v'\h'-1p'\s-2+\h'-1p'+\s0\v'.1v'\h'-1p'
39 . if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch
40 . if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch
53 .\" Escape single quotes in literal strings from groff's Unicode transform.
57 .\" If the F register is turned on, we'll generate index entries on stderr for
58 .\" titles (.TH), headers (.SH), subsections (.Sh), items (.Ip), and index
59 .\" entries marked with X<> in POD. Of course, you'll have to process the
60 .\" output yourself in some meaningful fashion.
63 . tm Index:\\$1\t\\n%\t"\\$2"
73 .\" Accent mark definitions (@(#)ms.acc 1.5 88/02/08 SMI; from UCB 4.2).
74 .\" Fear. Run. Save yourself. No user-serviceable parts.
75 . \" fudge factors for nroff and troff
84 . ds #H ((1u-(\\\\n(.fu%2u))*.13m)
90 . \" simple accents for nroff and troff
100 . ds ' \\k:\h'-(\\n(.wu*8/10-\*(#H)'\'\h"|\\n:u"
101 . ds ` \\k:\h'-(\\n(.wu*8/10-\*(#H)'\`\h'|\\n:u'
102 . ds ^ \\k:\h'-(\\n(.wu*10/11-\*(#H)'^\h'|\\n:u'
103 . ds , \\k:\h'-(\\n(.wu*8/10)',\h'|\\n:u'
104 . ds ~ \\k:\h'-(\\n(.wu-\*(#H-.1m)'~\h'|\\n:u'
105 . ds / \\k:\h'-(\\n(.wu*8/10-\*(#H)'\z\(sl\h'|\\n:u'
107 . \" troff and (daisy-wheel) nroff accents
108 .ds : \\k:\h'-(\\n(.wu*8/10-\*(#H+.1m+\*(#F)'\v'-\*(#V'\z.\h'.2m+\*(#F'.\h'|\\n:u'\v'\*(#V'
109 .ds 8 \h'\*(#H'\(*b\h'-\*(#H'
110 .ds o \\k:\h'-(\\n(.wu+\w'\(de'u-\*(#H)/2u'\v'-.3n'\*(#[\z\(de\v'.3n'\h'|\\n:u'\*(#]
111 .ds d- \h'\*(#H'\(pd\h'-\w'~'u'\v'-.25m'\f2\(hy\fP\v'.25m'\h'-\*(#H'
112 .ds D- D\\k:\h'-\w'D'u'\v'-.11m'\z\(hy\v'.11m'\h'|\\n:u'
113 .ds th \*(#[\v'.3m'\s+1I\s-1\v'-.3m'\h'-(\w'I'u*2/3)'\s-1o\s+1\*(#]
114 .ds Th \*(#[\s+2I\s-2\h'-\w'I'u*3/5'\v'-.3m'o\v'.3m'\*(#]
115 .ds ae a\h'-(\w'a'u*4/10)'e
116 .ds Ae A\h'-(\w'A'u*4/10)'E
117 . \" corrections for vroff
118 .if v .ds ~ \\k:\h'-(\\n(.wu*9/10-\*(#H)'\s-2\u~\d\s+2\h'|\\n:u'
119 .if v .ds ^ \\k:\h'-(\\n(.wu*10/11-\*(#H)'\v'-.4m'^\v'.4m'\h'|\\n:u'
120 . \" for low resolution devices (crt and lpr)
121 .if \n(.H>23 .if \n(.V>19 \
134 .\" ========================================================================
136 .IX Title "BIO_s_accept 3"
137 .TH BIO_s_accept 3 "2002-12-13" "1.1.0-dev" "OpenSSL"
138 .\" For nroff, turn off justification. Always turn off hyphenation; it makes
139 .\" way too many mistakes in technical documents.
143 BIO_s_accept, BIO_set_accept_port, BIO_get_accept_port,
144 BIO_set_nbio_accept, BIO_set_accept_bios, BIO_set_bind_mode,
145 BIO_get_bind_mode, BIO_do_accept \- accept BIO
149 .IX Header "SYNOPSIS"
151 \& #include <openssl/bio.h>
153 \& BIO_METHOD *BIO_s_accept(void);
155 \& long BIO_set_accept_port(BIO *b, char *name);
156 \& char *BIO_get_accept_port(BIO *b);
158 \& BIO *BIO_new_accept(char *host_port);
160 \& long BIO_set_nbio_accept(BIO *b, int n);
161 \& long BIO_set_accept_bios(BIO *b, char *bio);
163 \& long BIO_set_bind_mode(BIO *b, long mode);
164 \& long BIO_get_bind_mode(BIO *b, long dummy);
166 \& #define BIO_BIND_NORMAL 0
167 \& #define BIO_BIND_REUSEADDR_IF_UNUSED 1
168 \& #define BIO_BIND_REUSEADDR 2
170 \& int BIO_do_accept(BIO *b);
173 .IX Header "DESCRIPTION"
174 \&\fIBIO_s_accept()\fR returns the accept \s-1BIO\s0 method. This is a wrapper
175 round the platform's \s-1TCP/IP\s0 socket accept routines.
177 Using accept BIOs, \s-1TCP/IP\s0 connections can be accepted and data
178 transferred using only \s-1BIO\s0 routines. In this way any platform
179 specific operations are hidden by the \s-1BIO\s0 abstraction.
181 Read and write operations on an accept \s-1BIO\s0 will perform I/O
182 on the underlying connection. If no connection is established
183 and the port (see below) is set up properly then the \s-1BIO\s0
184 waits for an incoming connection.
186 Accept BIOs support \fIBIO_puts()\fR but not \fIBIO_gets()\fR.
188 If the close flag is set on an accept \s-1BIO\s0 then any active
189 connection on that chain is shutdown and the socket closed when
190 the \s-1BIO\s0 is freed.
192 Calling \fIBIO_reset()\fR on a accept \s-1BIO\s0 will close any active
193 connection and reset the \s-1BIO\s0 into a state where it awaits another
196 \&\fIBIO_get_fd()\fR and \fIBIO_set_fd()\fR can be called to retrieve or set
197 the accept socket. See \fIBIO_s_fd\fR\|(3)
199 \&\fIBIO_set_accept_port()\fR uses the string \fBname\fR to set the accept
200 port. The port is represented as a string of the form \*(L"host:port\*(R",
201 where \*(L"host\*(R" is the interface to use and \*(L"port\*(R" is the port.
202 Either or both values can be \*(L"*\*(R" which is interpreted as meaning
203 any interface or port respectively. \*(L"port\*(R" has the same syntax
204 as the port specified in \fIBIO_set_conn_port()\fR for connect BIOs,
205 that is it can be a numerical port string or a string to lookup
206 using \fIgetservbyname()\fR and a string table.
208 \&\fIBIO_new_accept()\fR combines \fIBIO_new()\fR and \fIBIO_set_accept_port()\fR into
209 a single call: that is it creates a new accept \s-1BIO\s0 with port
212 \&\fIBIO_set_nbio_accept()\fR sets the accept socket to blocking mode
213 (the default) if \fBn\fR is 0 or non blocking mode if \fBn\fR is 1.
215 \&\fIBIO_set_accept_bios()\fR can be used to set a chain of BIOs which
216 will be duplicated and prepended to the chain when an incoming
217 connection is received. This is useful if, for example, a
218 buffering or \s-1SSL\s0 \s-1BIO\s0 is required for each connection. The
219 chain of BIOs must not be freed after this call, they will
220 be automatically freed when the accept \s-1BIO\s0 is freed.
222 \&\fIBIO_set_bind_mode()\fR and \fIBIO_get_bind_mode()\fR set and retrieve
223 the current bind mode. If \s-1BIO_BIND_NORMAL\s0 (the default) is set
224 then another socket cannot be bound to the same port. If
225 \&\s-1BIO_BIND_REUSEADDR\s0 is set then other sockets can bind to the
226 same port. If \s-1BIO_BIND_REUSEADDR_IF_UNUSED\s0 is set then and
227 attempt is first made to use \s-1BIO_BIN_NORMAL\s0, if this fails
228 and the port is not in use then a second attempt is made
229 using \s-1BIO_BIND_REUSEADDR\s0.
231 \&\fIBIO_do_accept()\fR serves two functions. When it is first
232 called, after the accept \s-1BIO\s0 has been setup, it will attempt
233 to create the accept socket and bind an address to it. Second
234 and subsequent calls to \fIBIO_do_accept()\fR will await an incoming
235 connection, or request a retry in non blocking mode.
238 When an accept \s-1BIO\s0 is at the end of a chain it will await an
239 incoming connection before processing I/O calls. When an accept
240 \&\s-1BIO\s0 is not at then end of a chain it passes I/O calls to the next
241 \&\s-1BIO\s0 in the chain.
243 When a connection is established a new socket \s-1BIO\s0 is created for
244 the connection and appended to the chain. That is the chain is now
245 accept\->socket. This effectively means that attempting I/O on
246 an initial accept socket will await an incoming connection then
249 If any additional BIOs have been set using \fIBIO_set_accept_bios()\fR
250 then they are placed between the socket and the accept \s-1BIO\s0,
251 that is the chain will be accept\->otherbios\->socket.
253 If a server wishes to process multiple connections (as is normally
254 the case) then the accept \s-1BIO\s0 must be made available for further
255 incoming connections. This can be done by waiting for a connection and
259 \& connection = BIO_pop(accept);
262 After this call \fBconnection\fR will contain a \s-1BIO\s0 for the recently
263 established connection and \fBaccept\fR will now be a single \s-1BIO\s0
264 again which can be used to await further incoming connections.
265 If no further connections will be accepted the \fBaccept\fR can
266 be freed using \fIBIO_free()\fR.
268 If only a single connection will be processed it is possible to
269 perform I/O using the accept \s-1BIO\s0 itself. This is often undesirable
270 however because the accept \s-1BIO\s0 will still accept additional incoming
271 connections. This can be resolved by using \fIBIO_pop()\fR (see above)
272 and freeing up the accept \s-1BIO\s0 after the initial connection.
274 If the underlying accept socket is non-blocking and \fIBIO_do_accept()\fR is
275 called to await an incoming connection it is possible for
276 \&\fIBIO_should_io_special()\fR with the reason \s-1BIO_RR_ACCEPT\s0. If this happens
277 then it is an indication that an accept attempt would block: the application
278 should take appropriate action to wait until the underlying socket has
279 accepted a connection and retry the call.
281 \&\fIBIO_set_accept_port()\fR, \fIBIO_get_accept_port()\fR, \fIBIO_set_nbio_accept()\fR,
282 \&\fIBIO_set_accept_bios()\fR, \fIBIO_set_bind_mode()\fR, \fIBIO_get_bind_mode()\fR and
283 \&\fIBIO_do_accept()\fR are macros.
285 .IX Header "RETURN VALUES"
289 This example accepts two connections on port 4444, sends messages
290 down each and finally closes both down.
293 \& BIO *abio, *cbio, *cbio2;
294 \& ERR_load_crypto_strings();
295 \& abio = BIO_new_accept("4444");
297 \& /* First call to BIO_accept() sets up accept BIO */
298 \& if(BIO_do_accept(abio) <= 0) {
299 \& fprintf(stderr, "Error setting up accept\en");
300 \& ERR_print_errors_fp(stderr);
304 \& /* Wait for incoming connection */
305 \& if(BIO_do_accept(abio) <= 0) {
306 \& fprintf(stderr, "Error accepting connection\en");
307 \& ERR_print_errors_fp(stderr);
310 \& fprintf(stderr, "Connection 1 established\en");
311 \& /* Retrieve BIO for connection */
312 \& cbio = BIO_pop(abio);
313 \& BIO_puts(cbio, "Connection 1: Sending out Data on initial connection\en");
314 \& fprintf(stderr, "Sent out data on connection 1\en");
315 \& /* Wait for another connection */
316 \& if(BIO_do_accept(abio) <= 0) {
317 \& fprintf(stderr, "Error accepting connection\en");
318 \& ERR_print_errors_fp(stderr);
321 \& fprintf(stderr, "Connection 2 established\en");
322 \& /* Close accept BIO to refuse further connections */
323 \& cbio2 = BIO_pop(abio);
325 \& BIO_puts(cbio2, "Connection 2: Sending out Data on second\en");
326 \& fprintf(stderr, "Sent out data on connection 2\en");
328 \& BIO_puts(cbio, "Connection 1: Second connection established\en");
329 \& /* Close the two established connections */
334 .IX Header "SEE ALSO"