Lines Matching full:connection
183 on the underlying connection. If no connection is established
185 waits for an incoming connection.
190 connection on that chain is shutdown and the socket closed when
194 connection and reset the \s-1BIO\s0 into a state where it awaits another
195 incoming connection.
227 connection is received. This is useful if, for example, a
228 buffering or \s-1SSL BIO\s0 is required for each connection. The
251 connection, or request a retry in non blocking mode.
255 incoming connection before processing I/O calls. When an accept
259 When a connection is established a new socket \s-1BIO\s0 is created for
260 the connection and appended to the chain. That is the chain is now
262 an initial accept socket will await an incoming connection then
271 incoming connections. This can be done by waiting for a connection and
275 \& connection = BIO_pop(accept);
278 After this call \fBconnection\fR will contain a \s-1BIO\s0 for the recently
279 established connection and \fBaccept\fR will now be a single \s-1BIO\s0
284 If only a single connection will be processed it is possible to
288 and freeing up the accept \s-1BIO\s0 after the initial connection.
291 called to await an incoming connection it is possible for
295 accepted a connection and retry the call.
335 \& /* Wait for incoming connection */
337 \& fprintf(stderr, "Error accepting connection\en");
341 \& fprintf(stderr, "Connection 1 established\en");
343 \& /* Retrieve BIO for connection */
345 \& BIO_puts(cbio, "Connection 1: Sending out Data on initial connection\en");
346 \& fprintf(stderr, "Sent out data on connection 1\en");
348 \& /* Wait for another connection */
350 \& fprintf(stderr, "Error accepting connection\en");
354 \& fprintf(stderr, "Connection 2 established\en");
359 \& BIO_puts(cbio2, "Connection 2: Sending out Data on second\en");
360 \& fprintf(stderr, "Sent out data on connection 2\en");
362 \& BIO_puts(cbio, "Connection 1: Second connection established\en");