Lines Matching refs:is
41 BIO_s_accept() returns the accept BIO method. This is a wrapper
49 on the underlying connection. If no connection is established
50 and the port (see below) is set up properly then the BIO
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
57 the BIO is freed.
67 name. The name is represented as a string of the form "host:port",
68 where "host" is the interface to use and "port" is the port.
69 The host can be "*" or empty which is interpreted as meaning
70 any interface. If the host is an IPv6 address, it has to be
73 connect BIOs, that is it can be a numerical port string or a
78 BIO_set_conn_port() for connect BIOs, that is it can be a numerical
81 If the given port is C<0> then a random available port is chosen.
85 a single call: that is it creates a new accept BIO with port
89 (the default) if B<n> is 0 or non blocking mode if B<n> is 1.
92 if B<n> is 1 or disables TCP Fast Open if B<n> is 0 (the default).
93 Setting the value to 1 is equivalent to setting B<BIO_SOCK_TFO>
98 connection is received. This is useful if, for example, a
99 buffering or SSL BIO is required for each connection. The
101 be automatically freed when the accept BIO is freed.
107 The default is B<BIO_FAMILY_IPANY>.
110 the current bind mode. If B<BIO_BIND_NORMAL> (the default) is set
112 B<BIO_BIND_REUSEADDR> is set then other sockets can bind to the
113 same port. If B<BIO_BIND_REUSEADDR_IF_UNUSED> is set then and
114 attempt is first made to use BIO_BIN_NORMAL, if this fails
115 and the port is not in use then a second attempt is made
116 using B<BIO_BIND_REUSEADDR>. If B<BIO_SOCK_TFO> is set, then
120 BIO_do_accept() serves two functions. When it is first
128 When an accept BIO is at the end of a chain it will await an
130 BIO is not at then end of a chain it passes I/O calls to the next
133 When a connection is established a new socket BIO is created for
134 the connection and appended to the chain. That is the chain is now
141 that is the chain will be accept->otherbios->socket.
143 If a server wishes to process multiple connections (as is normally
156 If only a single connection will be processed it is possible to
157 perform I/O using the accept BIO itself. This is often undesirable
162 If the underlying accept socket is nonblocking and BIO_do_accept() is
163 called to await an incoming connection it is possible for
165 then it is an indication that an accept attempt would block: the application