Lines Matching refs:on
48 Read and write operations on an accept BIO will perform I/O
49 on the underlying connection. If no connection is established
55 If the close flag is set on an accept BIO then any active
56 connection on that chain is shutdown and the socket closed when
59 Calling BIO_reset() on an accept BIO will close any active
91 BIO_set_tfo_accept() enables TCP Fast Open on the accept socket
135 accept->socket. This effectively means that attempting I/O on
137 perform I/O on it.
182 BIO_get_accept_name() returns the accept name or NULL on error.
183 BIO_get_peer_name() returns the peer name or NULL on error.
185 BIO_get_accept_port() returns the accept port as a string or NULL on error.
186 BIO_get_peer_port() returns the peer port as a string or NULL on error.
187 BIO_get_accept_ip_family() returns the IP family or <= 0 on error.
189 BIO_get_bind_mode() returns the set of B<BIO_BIND> flags, or <= 0 on failure.
191 BIO_new_accept() returns a BIO or NULL on error.
195 This example accepts two connections on port 4444, sends messages
218 BIO_puts(cbio, "Connection 1: Sending out Data on initial connection\n");
219 fprintf(stderr, "Sent out data on connection 1\n");
232 BIO_puts(cbio2, "Connection 2: Sending out Data on second\n");
233 fprintf(stderr, "Sent out data on connection 2\n");