• Home
  • Raw
  • Download

Lines Matching full:connect

2 // connect.hpp
25 * @defgroup connect asio::connect
33 * This function attempts to connect a socket to one of a sequence of
34 * endpoints. It does this by repeated calls to the socket's @c connect member
58 * asio::connect(s, r.resolve(q)); @endcode
61 Iterator connect(basic_socket<Protocol, SocketService>& s, Iterator begin);
65 * This function attempts to connect a socket to one of a sequence of
66 * endpoints. It does this by repeated calls to the socket's @c connect member
91 * asio::connect(s, r.resolve(q), ec);
98 Iterator connect(basic_socket<Protocol, SocketService>& s,
103 * This function attempts to connect a socket to one of a sequence of
104 * endpoints. It does this by repeated calls to the socket's @c connect member
127 * asio::connect(s, i, end); @endcode
130 Iterator connect(basic_socket<Protocol, SocketService>& s,
135 * This function attempts to connect a socket to one of a sequence of
136 * endpoints. It does this by repeated calls to the socket's @c connect member
160 * asio::connect(s, i, end, ec);
167 Iterator connect(basic_socket<Protocol, SocketService>& s,
172 * This function attempts to connect a socket to one of a sequence of
173 * endpoints. It does this by repeated calls to the socket's @c connect member
187 * The @c ec parameter contains the result from the most recent connect
207 * The following connect condition function object can be used to output
221 * It would be used with the asio::connect function as follows:
225 * tcp::resolver::iterator i = asio::connect(
231 Iterator connect(basic_socket<Protocol, SocketService>& s,
236 * This function attempts to connect a socket to one of a sequence of
237 * endpoints. It does this by repeated calls to the socket's @c connect member
251 * The @c ec parameter contains the result from the most recent connect
271 * The following connect condition function object can be used to output
285 * It would be used with the asio::connect function as follows:
290 * tcp::resolver::iterator i = asio::connect(
303 Iterator connect(basic_socket<Protocol, SocketService>& s, Iterator begin,
308 * This function attempts to connect a socket to one of a sequence of
309 * endpoints. It does this by repeated calls to the socket's @c connect member
325 * The @c ec parameter contains the result from the most recent connect
341 * The following connect condition function object can be used to output
355 * It would be used with the asio::connect function as follows:
360 * i = asio::connect(s, i, end, my_connect_condition());
365 Iterator connect(basic_socket<Protocol, SocketService>& s, Iterator begin,
370 * This function attempts to connect a socket to one of a sequence of
371 * endpoints. It does this by repeated calls to the socket's @c connect member
387 * The @c ec parameter contains the result from the most recent connect
403 * The following connect condition function object can be used to output
417 * It would be used with the asio::connect function as follows:
423 * i = asio::connect(s, i, end, my_connect_condition(), ec);
435 Iterator connect(basic_socket<Protocol, SocketService>& s,
452 * This function attempts to connect a socket to one of a sequence of
462 * @param handler The handler to be called when the connect operation
524 * This function attempts to connect a socket to one of a sequence of
536 * @param handler The handler to be called when the connect operation
596 * This function attempts to connect a socket to one of a sequence of
611 * The @c ec parameter contains the result from the most recent connect
619 * @param handler The handler to be called when the connect operation
642 * The following connect condition function object can be used to output
656 * It would be used with the asio::connect function as follows:
706 * This function attempts to connect a socket to one of a sequence of
723 * The @c ec parameter contains the result from the most recent connect
731 * @param handler The handler to be called when the connect operation
750 * The following connect condition function object can be used to output
764 * It would be used with the asio::connect function as follows:
818 #include "asio/impl/connect.hpp"