connect.hpp 31 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825
  1. //
  2. // connect.hpp
  3. // ~~~~~~~~~~~
  4. //
  5. // Copyright (c) 2003-2015 Christopher M. Kohlhoff (chris at kohlhoff dot com)
  6. //
  7. // Distributed under the Boost Software License, Version 1.0. (See accompanying
  8. // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  9. //
  10. #ifndef BOOST_ASIO_CONNECT_HPP
  11. #define BOOST_ASIO_CONNECT_HPP
  12. #if defined(_MSC_VER) && (_MSC_VER >= 1200)
  13. # pragma once
  14. #endif // defined(_MSC_VER) && (_MSC_VER >= 1200)
  15. #include <boost/asio/detail/config.hpp>
  16. #include <boost/asio/async_result.hpp>
  17. #include <boost/asio/basic_socket.hpp>
  18. #include <boost/asio/error.hpp>
  19. #include <boost/asio/detail/push_options.hpp>
  20. namespace boost {
  21. namespace asio {
  22. /**
  23. * @defgroup connect boost::asio::connect
  24. *
  25. * @brief Establishes a socket connection by trying each endpoint in a sequence.
  26. */
  27. /*@{*/
  28. /// Establishes a socket connection by trying each endpoint in a sequence.
  29. /**
  30. * This function attempts to connect a socket to one of a sequence of
  31. * endpoints. It does this by repeated calls to the socket's @c connect member
  32. * function, once for each endpoint in the sequence, until a connection is
  33. * successfully established.
  34. *
  35. * @param s The socket to be connected. If the socket is already open, it will
  36. * be closed.
  37. *
  38. * @param begin An iterator pointing to the start of a sequence of endpoints.
  39. *
  40. * @returns On success, an iterator denoting the successfully connected
  41. * endpoint. Otherwise, the end iterator.
  42. *
  43. * @throws boost::system::system_error Thrown on failure. If the sequence is
  44. * empty, the associated @c error_code is boost::asio::error::not_found.
  45. * Otherwise, contains the error from the last connection attempt.
  46. *
  47. * @note This overload assumes that a default constructed object of type @c
  48. * Iterator represents the end of the sequence. This is a valid assumption for
  49. * iterator types such as @c boost::asio::ip::tcp::resolver::iterator.
  50. *
  51. * @par Example
  52. * @code tcp::resolver r(io_service);
  53. * tcp::resolver::query q("host", "service");
  54. * tcp::socket s(io_service);
  55. * boost::asio::connect(s, r.resolve(q)); @endcode
  56. */
  57. template <typename Protocol, typename SocketService, typename Iterator>
  58. Iterator connect(basic_socket<Protocol, SocketService>& s, Iterator begin);
  59. /// Establishes a socket connection by trying each endpoint in a sequence.
  60. /**
  61. * This function attempts to connect a socket to one of a sequence of
  62. * endpoints. It does this by repeated calls to the socket's @c connect member
  63. * function, once for each endpoint in the sequence, until a connection is
  64. * successfully established.
  65. *
  66. * @param s The socket to be connected. If the socket is already open, it will
  67. * be closed.
  68. *
  69. * @param begin An iterator pointing to the start of a sequence of endpoints.
  70. *
  71. * @param ec Set to indicate what error occurred, if any. If the sequence is
  72. * empty, set to boost::asio::error::not_found. Otherwise, contains the error
  73. * from the last connection attempt.
  74. *
  75. * @returns On success, an iterator denoting the successfully connected
  76. * endpoint. Otherwise, the end iterator.
  77. *
  78. * @note This overload assumes that a default constructed object of type @c
  79. * Iterator represents the end of the sequence. This is a valid assumption for
  80. * iterator types such as @c boost::asio::ip::tcp::resolver::iterator.
  81. *
  82. * @par Example
  83. * @code tcp::resolver r(io_service);
  84. * tcp::resolver::query q("host", "service");
  85. * tcp::socket s(io_service);
  86. * boost::system::error_code ec;
  87. * boost::asio::connect(s, r.resolve(q), ec);
  88. * if (ec)
  89. * {
  90. * // An error occurred.
  91. * } @endcode
  92. */
  93. template <typename Protocol, typename SocketService, typename Iterator>
  94. Iterator connect(basic_socket<Protocol, SocketService>& s,
  95. Iterator begin, boost::system::error_code& ec);
  96. /// Establishes a socket connection by trying each endpoint in a sequence.
  97. /**
  98. * This function attempts to connect a socket to one of a sequence of
  99. * endpoints. It does this by repeated calls to the socket's @c connect member
  100. * function, once for each endpoint in the sequence, until a connection is
  101. * successfully established.
  102. *
  103. * @param s The socket to be connected. If the socket is already open, it will
  104. * be closed.
  105. *
  106. * @param begin An iterator pointing to the start of a sequence of endpoints.
  107. *
  108. * @param end An iterator pointing to the end of a sequence of endpoints.
  109. *
  110. * @returns On success, an iterator denoting the successfully connected
  111. * endpoint. Otherwise, the end iterator.
  112. *
  113. * @throws boost::system::system_error Thrown on failure. If the sequence is
  114. * empty, the associated @c error_code is boost::asio::error::not_found.
  115. * Otherwise, contains the error from the last connection attempt.
  116. *
  117. * @par Example
  118. * @code tcp::resolver r(io_service);
  119. * tcp::resolver::query q("host", "service");
  120. * tcp::resolver::iterator i = r.resolve(q), end;
  121. * tcp::socket s(io_service);
  122. * boost::asio::connect(s, i, end); @endcode
  123. */
  124. template <typename Protocol, typename SocketService, typename Iterator>
  125. Iterator connect(basic_socket<Protocol, SocketService>& s,
  126. Iterator begin, Iterator end);
  127. /// Establishes a socket connection by trying each endpoint in a sequence.
  128. /**
  129. * This function attempts to connect a socket to one of a sequence of
  130. * endpoints. It does this by repeated calls to the socket's @c connect member
  131. * function, once for each endpoint in the sequence, until a connection is
  132. * successfully established.
  133. *
  134. * @param s The socket to be connected. If the socket is already open, it will
  135. * be closed.
  136. *
  137. * @param begin An iterator pointing to the start of a sequence of endpoints.
  138. *
  139. * @param end An iterator pointing to the end of a sequence of endpoints.
  140. *
  141. * @param ec Set to indicate what error occurred, if any. If the sequence is
  142. * empty, set to boost::asio::error::not_found. Otherwise, contains the error
  143. * from the last connection attempt.
  144. *
  145. * @returns On success, an iterator denoting the successfully connected
  146. * endpoint. Otherwise, the end iterator.
  147. *
  148. * @par Example
  149. * @code tcp::resolver r(io_service);
  150. * tcp::resolver::query q("host", "service");
  151. * tcp::resolver::iterator i = r.resolve(q), end;
  152. * tcp::socket s(io_service);
  153. * boost::system::error_code ec;
  154. * boost::asio::connect(s, i, end, ec);
  155. * if (ec)
  156. * {
  157. * // An error occurred.
  158. * } @endcode
  159. */
  160. template <typename Protocol, typename SocketService, typename Iterator>
  161. Iterator connect(basic_socket<Protocol, SocketService>& s,
  162. Iterator begin, Iterator end, boost::system::error_code& ec);
  163. /// Establishes a socket connection by trying each endpoint in a sequence.
  164. /**
  165. * This function attempts to connect a socket to one of a sequence of
  166. * endpoints. It does this by repeated calls to the socket's @c connect member
  167. * function, once for each endpoint in the sequence, until a connection is
  168. * successfully established.
  169. *
  170. * @param s The socket to be connected. If the socket is already open, it will
  171. * be closed.
  172. *
  173. * @param begin An iterator pointing to the start of a sequence of endpoints.
  174. *
  175. * @param connect_condition A function object that is called prior to each
  176. * connection attempt. The signature of the function object must be:
  177. * @code Iterator connect_condition(
  178. * const boost::system::error_code& ec,
  179. * Iterator next); @endcode
  180. * The @c ec parameter contains the result from the most recent connect
  181. * operation. Before the first connection attempt, @c ec is always set to
  182. * indicate success. The @c next parameter is an iterator pointing to the next
  183. * endpoint to be tried. The function object should return the next iterator,
  184. * but is permitted to return a different iterator so that endpoints may be
  185. * skipped. The implementation guarantees that the function object will never
  186. * be called with the end iterator.
  187. *
  188. * @returns On success, an iterator denoting the successfully connected
  189. * endpoint. Otherwise, the end iterator.
  190. *
  191. * @throws boost::system::system_error Thrown on failure. If the sequence is
  192. * empty, the associated @c error_code is boost::asio::error::not_found.
  193. * Otherwise, contains the error from the last connection attempt.
  194. *
  195. * @note This overload assumes that a default constructed object of type @c
  196. * Iterator represents the end of the sequence. This is a valid assumption for
  197. * iterator types such as @c boost::asio::ip::tcp::resolver::iterator.
  198. *
  199. * @par Example
  200. * The following connect condition function object can be used to output
  201. * information about the individual connection attempts:
  202. * @code struct my_connect_condition
  203. * {
  204. * template <typename Iterator>
  205. * Iterator operator()(
  206. * const boost::system::error_code& ec,
  207. * Iterator next)
  208. * {
  209. * if (ec) std::cout << "Error: " << ec.message() << std::endl;
  210. * std::cout << "Trying: " << next->endpoint() << std::endl;
  211. * return next;
  212. * }
  213. * }; @endcode
  214. * It would be used with the boost::asio::connect function as follows:
  215. * @code tcp::resolver r(io_service);
  216. * tcp::resolver::query q("host", "service");
  217. * tcp::socket s(io_service);
  218. * tcp::resolver::iterator i = boost::asio::connect(
  219. * s, r.resolve(q), my_connect_condition());
  220. * std::cout << "Connected to: " << i->endpoint() << std::endl; @endcode
  221. */
  222. template <typename Protocol, typename SocketService,
  223. typename Iterator, typename ConnectCondition>
  224. Iterator connect(basic_socket<Protocol, SocketService>& s,
  225. Iterator begin, ConnectCondition connect_condition);
  226. /// Establishes a socket connection by trying each endpoint in a sequence.
  227. /**
  228. * This function attempts to connect a socket to one of a sequence of
  229. * endpoints. It does this by repeated calls to the socket's @c connect member
  230. * function, once for each endpoint in the sequence, until a connection is
  231. * successfully established.
  232. *
  233. * @param s The socket to be connected. If the socket is already open, it will
  234. * be closed.
  235. *
  236. * @param begin An iterator pointing to the start of a sequence of endpoints.
  237. *
  238. * @param connect_condition A function object that is called prior to each
  239. * connection attempt. The signature of the function object must be:
  240. * @code Iterator connect_condition(
  241. * const boost::system::error_code& ec,
  242. * Iterator next); @endcode
  243. * The @c ec parameter contains the result from the most recent connect
  244. * operation. Before the first connection attempt, @c ec is always set to
  245. * indicate success. The @c next parameter is an iterator pointing to the next
  246. * endpoint to be tried. The function object should return the next iterator,
  247. * but is permitted to return a different iterator so that endpoints may be
  248. * skipped. The implementation guarantees that the function object will never
  249. * be called with the end iterator.
  250. *
  251. * @param ec Set to indicate what error occurred, if any. If the sequence is
  252. * empty, set to boost::asio::error::not_found. Otherwise, contains the error
  253. * from the last connection attempt.
  254. *
  255. * @returns On success, an iterator denoting the successfully connected
  256. * endpoint. Otherwise, the end iterator.
  257. *
  258. * @note This overload assumes that a default constructed object of type @c
  259. * Iterator represents the end of the sequence. This is a valid assumption for
  260. * iterator types such as @c boost::asio::ip::tcp::resolver::iterator.
  261. *
  262. * @par Example
  263. * The following connect condition function object can be used to output
  264. * information about the individual connection attempts:
  265. * @code struct my_connect_condition
  266. * {
  267. * template <typename Iterator>
  268. * Iterator operator()(
  269. * const boost::system::error_code& ec,
  270. * Iterator next)
  271. * {
  272. * if (ec) std::cout << "Error: " << ec.message() << std::endl;
  273. * std::cout << "Trying: " << next->endpoint() << std::endl;
  274. * return next;
  275. * }
  276. * }; @endcode
  277. * It would be used with the boost::asio::connect function as follows:
  278. * @code tcp::resolver r(io_service);
  279. * tcp::resolver::query q("host", "service");
  280. * tcp::socket s(io_service);
  281. * boost::system::error_code ec;
  282. * tcp::resolver::iterator i = boost::asio::connect(
  283. * s, r.resolve(q), my_connect_condition(), ec);
  284. * if (ec)
  285. * {
  286. * // An error occurred.
  287. * }
  288. * else
  289. * {
  290. * std::cout << "Connected to: " << i->endpoint() << std::endl;
  291. * } @endcode
  292. */
  293. template <typename Protocol, typename SocketService,
  294. typename Iterator, typename ConnectCondition>
  295. Iterator connect(basic_socket<Protocol, SocketService>& s, Iterator begin,
  296. ConnectCondition connect_condition, boost::system::error_code& ec);
  297. /// Establishes a socket connection by trying each endpoint in a sequence.
  298. /**
  299. * This function attempts to connect a socket to one of a sequence of
  300. * endpoints. It does this by repeated calls to the socket's @c connect member
  301. * function, once for each endpoint in the sequence, until a connection is
  302. * successfully established.
  303. *
  304. * @param s The socket to be connected. If the socket is already open, it will
  305. * be closed.
  306. *
  307. * @param begin An iterator pointing to the start of a sequence of endpoints.
  308. *
  309. * @param end An iterator pointing to the end of a sequence of endpoints.
  310. *
  311. * @param connect_condition A function object that is called prior to each
  312. * connection attempt. The signature of the function object must be:
  313. * @code Iterator connect_condition(
  314. * const boost::system::error_code& ec,
  315. * Iterator next); @endcode
  316. * The @c ec parameter contains the result from the most recent connect
  317. * operation. Before the first connection attempt, @c ec is always set to
  318. * indicate success. The @c next parameter is an iterator pointing to the next
  319. * endpoint to be tried. The function object should return the next iterator,
  320. * but is permitted to return a different iterator so that endpoints may be
  321. * skipped. The implementation guarantees that the function object will never
  322. * be called with the end iterator.
  323. *
  324. * @returns On success, an iterator denoting the successfully connected
  325. * endpoint. Otherwise, the end iterator.
  326. *
  327. * @throws boost::system::system_error Thrown on failure. If the sequence is
  328. * empty, the associated @c error_code is boost::asio::error::not_found.
  329. * Otherwise, contains the error from the last connection attempt.
  330. *
  331. * @par Example
  332. * The following connect condition function object can be used to output
  333. * information about the individual connection attempts:
  334. * @code struct my_connect_condition
  335. * {
  336. * template <typename Iterator>
  337. * Iterator operator()(
  338. * const boost::system::error_code& ec,
  339. * Iterator next)
  340. * {
  341. * if (ec) std::cout << "Error: " << ec.message() << std::endl;
  342. * std::cout << "Trying: " << next->endpoint() << std::endl;
  343. * return next;
  344. * }
  345. * }; @endcode
  346. * It would be used with the boost::asio::connect function as follows:
  347. * @code tcp::resolver r(io_service);
  348. * tcp::resolver::query q("host", "service");
  349. * tcp::resolver::iterator i = r.resolve(q), end;
  350. * tcp::socket s(io_service);
  351. * i = boost::asio::connect(s, i, end, my_connect_condition());
  352. * std::cout << "Connected to: " << i->endpoint() << std::endl; @endcode
  353. */
  354. template <typename Protocol, typename SocketService,
  355. typename Iterator, typename ConnectCondition>
  356. Iterator connect(basic_socket<Protocol, SocketService>& s, Iterator begin,
  357. Iterator end, ConnectCondition connect_condition);
  358. /// Establishes a socket connection by trying each endpoint in a sequence.
  359. /**
  360. * This function attempts to connect a socket to one of a sequence of
  361. * endpoints. It does this by repeated calls to the socket's @c connect member
  362. * function, once for each endpoint in the sequence, until a connection is
  363. * successfully established.
  364. *
  365. * @param s The socket to be connected. If the socket is already open, it will
  366. * be closed.
  367. *
  368. * @param begin An iterator pointing to the start of a sequence of endpoints.
  369. *
  370. * @param end An iterator pointing to the end of a sequence of endpoints.
  371. *
  372. * @param connect_condition A function object that is called prior to each
  373. * connection attempt. The signature of the function object must be:
  374. * @code Iterator connect_condition(
  375. * const boost::system::error_code& ec,
  376. * Iterator next); @endcode
  377. * The @c ec parameter contains the result from the most recent connect
  378. * operation. Before the first connection attempt, @c ec is always set to
  379. * indicate success. The @c next parameter is an iterator pointing to the next
  380. * endpoint to be tried. The function object should return the next iterator,
  381. * but is permitted to return a different iterator so that endpoints may be
  382. * skipped. The implementation guarantees that the function object will never
  383. * be called with the end iterator.
  384. *
  385. * @param ec Set to indicate what error occurred, if any. If the sequence is
  386. * empty, set to boost::asio::error::not_found. Otherwise, contains the error
  387. * from the last connection attempt.
  388. *
  389. * @returns On success, an iterator denoting the successfully connected
  390. * endpoint. Otherwise, the end iterator.
  391. *
  392. * @par Example
  393. * The following connect condition function object can be used to output
  394. * information about the individual connection attempts:
  395. * @code struct my_connect_condition
  396. * {
  397. * template <typename Iterator>
  398. * Iterator operator()(
  399. * const boost::system::error_code& ec,
  400. * Iterator next)
  401. * {
  402. * if (ec) std::cout << "Error: " << ec.message() << std::endl;
  403. * std::cout << "Trying: " << next->endpoint() << std::endl;
  404. * return next;
  405. * }
  406. * }; @endcode
  407. * It would be used with the boost::asio::connect function as follows:
  408. * @code tcp::resolver r(io_service);
  409. * tcp::resolver::query q("host", "service");
  410. * tcp::resolver::iterator i = r.resolve(q), end;
  411. * tcp::socket s(io_service);
  412. * boost::system::error_code ec;
  413. * i = boost::asio::connect(s, i, end, my_connect_condition(), ec);
  414. * if (ec)
  415. * {
  416. * // An error occurred.
  417. * }
  418. * else
  419. * {
  420. * std::cout << "Connected to: " << i->endpoint() << std::endl;
  421. * } @endcode
  422. */
  423. template <typename Protocol, typename SocketService,
  424. typename Iterator, typename ConnectCondition>
  425. Iterator connect(basic_socket<Protocol, SocketService>& s,
  426. Iterator begin, Iterator end, ConnectCondition connect_condition,
  427. boost::system::error_code& ec);
  428. /*@}*/
  429. /**
  430. * @defgroup async_connect boost::asio::async_connect
  431. *
  432. * @brief Asynchronously establishes a socket connection by trying each
  433. * endpoint in a sequence.
  434. */
  435. /*@{*/
  436. /// Asynchronously establishes a socket connection by trying each endpoint in a
  437. /// sequence.
  438. /**
  439. * This function attempts to connect a socket to one of a sequence of
  440. * endpoints. It does this by repeated calls to the socket's @c async_connect
  441. * member function, once for each endpoint in the sequence, until a connection
  442. * is successfully established.
  443. *
  444. * @param s The socket to be connected. If the socket is already open, it will
  445. * be closed.
  446. *
  447. * @param begin An iterator pointing to the start of a sequence of endpoints.
  448. *
  449. * @param handler The handler to be called when the connect operation
  450. * completes. Copies will be made of the handler as required. The function
  451. * signature of the handler must be:
  452. * @code void handler(
  453. * // Result of operation. if the sequence is empty, set to
  454. * // boost::asio::error::not_found. Otherwise, contains the
  455. * // error from the last connection attempt.
  456. * const boost::system::error_code& error,
  457. *
  458. * // On success, an iterator denoting the successfully
  459. * // connected endpoint. Otherwise, the end iterator.
  460. * Iterator iterator
  461. * ); @endcode
  462. * Regardless of whether the asynchronous operation completes immediately or
  463. * not, the handler will not be invoked from within this function. Invocation
  464. * of the handler will be performed in a manner equivalent to using
  465. * boost::asio::io_service::post().
  466. *
  467. * @note This overload assumes that a default constructed object of type @c
  468. * Iterator represents the end of the sequence. This is a valid assumption for
  469. * iterator types such as @c boost::asio::ip::tcp::resolver::iterator.
  470. *
  471. * @par Example
  472. * @code tcp::resolver r(io_service);
  473. * tcp::resolver::query q("host", "service");
  474. * tcp::socket s(io_service);
  475. *
  476. * // ...
  477. *
  478. * r.async_resolve(q, resolve_handler);
  479. *
  480. * // ...
  481. *
  482. * void resolve_handler(
  483. * const boost::system::error_code& ec,
  484. * tcp::resolver::iterator i)
  485. * {
  486. * if (!ec)
  487. * {
  488. * boost::asio::async_connect(s, i, connect_handler);
  489. * }
  490. * }
  491. *
  492. * // ...
  493. *
  494. * void connect_handler(
  495. * const boost::system::error_code& ec,
  496. * tcp::resolver::iterator i)
  497. * {
  498. * // ...
  499. * } @endcode
  500. */
  501. template <typename Protocol, typename SocketService,
  502. typename Iterator, typename ComposedConnectHandler>
  503. BOOST_ASIO_INITFN_RESULT_TYPE(ComposedConnectHandler,
  504. void (boost::system::error_code, Iterator))
  505. async_connect(basic_socket<Protocol, SocketService>& s,
  506. Iterator begin, BOOST_ASIO_MOVE_ARG(ComposedConnectHandler) handler);
  507. /// Asynchronously establishes a socket connection by trying each endpoint in a
  508. /// sequence.
  509. /**
  510. * This function attempts to connect a socket to one of a sequence of
  511. * endpoints. It does this by repeated calls to the socket's @c async_connect
  512. * member function, once for each endpoint in the sequence, until a connection
  513. * is successfully established.
  514. *
  515. * @param s The socket to be connected. If the socket is already open, it will
  516. * be closed.
  517. *
  518. * @param begin An iterator pointing to the start of a sequence of endpoints.
  519. *
  520. * @param end An iterator pointing to the end of a sequence of endpoints.
  521. *
  522. * @param handler The handler to be called when the connect operation
  523. * completes. Copies will be made of the handler as required. The function
  524. * signature of the handler must be:
  525. * @code void handler(
  526. * // Result of operation. if the sequence is empty, set to
  527. * // boost::asio::error::not_found. Otherwise, contains the
  528. * // error from the last connection attempt.
  529. * const boost::system::error_code& error,
  530. *
  531. * // On success, an iterator denoting the successfully
  532. * // connected endpoint. Otherwise, the end iterator.
  533. * Iterator iterator
  534. * ); @endcode
  535. * Regardless of whether the asynchronous operation completes immediately or
  536. * not, the handler will not be invoked from within this function. Invocation
  537. * of the handler will be performed in a manner equivalent to using
  538. * boost::asio::io_service::post().
  539. *
  540. * @par Example
  541. * @code tcp::resolver r(io_service);
  542. * tcp::resolver::query q("host", "service");
  543. * tcp::socket s(io_service);
  544. *
  545. * // ...
  546. *
  547. * r.async_resolve(q, resolve_handler);
  548. *
  549. * // ...
  550. *
  551. * void resolve_handler(
  552. * const boost::system::error_code& ec,
  553. * tcp::resolver::iterator i)
  554. * {
  555. * if (!ec)
  556. * {
  557. * tcp::resolver::iterator end;
  558. * boost::asio::async_connect(s, i, end, connect_handler);
  559. * }
  560. * }
  561. *
  562. * // ...
  563. *
  564. * void connect_handler(
  565. * const boost::system::error_code& ec,
  566. * tcp::resolver::iterator i)
  567. * {
  568. * // ...
  569. * } @endcode
  570. */
  571. template <typename Protocol, typename SocketService,
  572. typename Iterator, typename ComposedConnectHandler>
  573. BOOST_ASIO_INITFN_RESULT_TYPE(ComposedConnectHandler,
  574. void (boost::system::error_code, Iterator))
  575. async_connect(basic_socket<Protocol, SocketService>& s,
  576. Iterator begin, Iterator end,
  577. BOOST_ASIO_MOVE_ARG(ComposedConnectHandler) handler);
  578. /// Asynchronously establishes a socket connection by trying each endpoint in a
  579. /// sequence.
  580. /**
  581. * This function attempts to connect a socket to one of a sequence of
  582. * endpoints. It does this by repeated calls to the socket's @c async_connect
  583. * member function, once for each endpoint in the sequence, until a connection
  584. * is successfully established.
  585. *
  586. * @param s The socket to be connected. If the socket is already open, it will
  587. * be closed.
  588. *
  589. * @param begin An iterator pointing to the start of a sequence of endpoints.
  590. *
  591. * @param connect_condition A function object that is called prior to each
  592. * connection attempt. The signature of the function object must be:
  593. * @code Iterator connect_condition(
  594. * const boost::system::error_code& ec,
  595. * Iterator next); @endcode
  596. * The @c ec parameter contains the result from the most recent connect
  597. * operation. Before the first connection attempt, @c ec is always set to
  598. * indicate success. The @c next parameter is an iterator pointing to the next
  599. * endpoint to be tried. The function object should return the next iterator,
  600. * but is permitted to return a different iterator so that endpoints may be
  601. * skipped. The implementation guarantees that the function object will never
  602. * be called with the end iterator.
  603. *
  604. * @param handler The handler to be called when the connect operation
  605. * completes. Copies will be made of the handler as required. The function
  606. * signature of the handler must be:
  607. * @code void handler(
  608. * // Result of operation. if the sequence is empty, set to
  609. * // boost::asio::error::not_found. Otherwise, contains the
  610. * // error from the last connection attempt.
  611. * const boost::system::error_code& error,
  612. *
  613. * // On success, an iterator denoting the successfully
  614. * // connected endpoint. Otherwise, the end iterator.
  615. * Iterator iterator
  616. * ); @endcode
  617. * Regardless of whether the asynchronous operation completes immediately or
  618. * not, the handler will not be invoked from within this function. Invocation
  619. * of the handler will be performed in a manner equivalent to using
  620. * boost::asio::io_service::post().
  621. *
  622. * @note This overload assumes that a default constructed object of type @c
  623. * Iterator represents the end of the sequence. This is a valid assumption for
  624. * iterator types such as @c boost::asio::ip::tcp::resolver::iterator.
  625. *
  626. * @par Example
  627. * The following connect condition function object can be used to output
  628. * information about the individual connection attempts:
  629. * @code struct my_connect_condition
  630. * {
  631. * template <typename Iterator>
  632. * Iterator operator()(
  633. * const boost::system::error_code& ec,
  634. * Iterator next)
  635. * {
  636. * if (ec) std::cout << "Error: " << ec.message() << std::endl;
  637. * std::cout << "Trying: " << next->endpoint() << std::endl;
  638. * return next;
  639. * }
  640. * }; @endcode
  641. * It would be used with the boost::asio::connect function as follows:
  642. * @code tcp::resolver r(io_service);
  643. * tcp::resolver::query q("host", "service");
  644. * tcp::socket s(io_service);
  645. *
  646. * // ...
  647. *
  648. * r.async_resolve(q, resolve_handler);
  649. *
  650. * // ...
  651. *
  652. * void resolve_handler(
  653. * const boost::system::error_code& ec,
  654. * tcp::resolver::iterator i)
  655. * {
  656. * if (!ec)
  657. * {
  658. * boost::asio::async_connect(s, i,
  659. * my_connect_condition(),
  660. * connect_handler);
  661. * }
  662. * }
  663. *
  664. * // ...
  665. *
  666. * void connect_handler(
  667. * const boost::system::error_code& ec,
  668. * tcp::resolver::iterator i)
  669. * {
  670. * if (ec)
  671. * {
  672. * // An error occurred.
  673. * }
  674. * else
  675. * {
  676. * std::cout << "Connected to: " << i->endpoint() << std::endl;
  677. * }
  678. * } @endcode
  679. */
  680. template <typename Protocol, typename SocketService, typename Iterator,
  681. typename ConnectCondition, typename ComposedConnectHandler>
  682. BOOST_ASIO_INITFN_RESULT_TYPE(ComposedConnectHandler,
  683. void (boost::system::error_code, Iterator))
  684. async_connect(basic_socket<Protocol, SocketService>& s, Iterator begin,
  685. ConnectCondition connect_condition,
  686. BOOST_ASIO_MOVE_ARG(ComposedConnectHandler) handler);
  687. /// Asynchronously establishes a socket connection by trying each endpoint in a
  688. /// sequence.
  689. /**
  690. * This function attempts to connect a socket to one of a sequence of
  691. * endpoints. It does this by repeated calls to the socket's @c async_connect
  692. * member function, once for each endpoint in the sequence, until a connection
  693. * is successfully established.
  694. *
  695. * @param s The socket to be connected. If the socket is already open, it will
  696. * be closed.
  697. *
  698. * @param begin An iterator pointing to the start of a sequence of endpoints.
  699. *
  700. * @param end An iterator pointing to the end of a sequence of endpoints.
  701. *
  702. * @param connect_condition A function object that is called prior to each
  703. * connection attempt. The signature of the function object must be:
  704. * @code Iterator connect_condition(
  705. * const boost::system::error_code& ec,
  706. * Iterator next); @endcode
  707. * The @c ec parameter contains the result from the most recent connect
  708. * operation. Before the first connection attempt, @c ec is always set to
  709. * indicate success. The @c next parameter is an iterator pointing to the next
  710. * endpoint to be tried. The function object should return the next iterator,
  711. * but is permitted to return a different iterator so that endpoints may be
  712. * skipped. The implementation guarantees that the function object will never
  713. * be called with the end iterator.
  714. *
  715. * @param handler The handler to be called when the connect operation
  716. * completes. Copies will be made of the handler as required. The function
  717. * signature of the handler must be:
  718. * @code void handler(
  719. * // Result of operation. if the sequence is empty, set to
  720. * // boost::asio::error::not_found. Otherwise, contains the
  721. * // error from the last connection attempt.
  722. * const boost::system::error_code& error,
  723. *
  724. * // On success, an iterator denoting the successfully
  725. * // connected endpoint. Otherwise, the end iterator.
  726. * Iterator iterator
  727. * ); @endcode
  728. * Regardless of whether the asynchronous operation completes immediately or
  729. * not, the handler will not be invoked from within this function. Invocation
  730. * of the handler will be performed in a manner equivalent to using
  731. * boost::asio::io_service::post().
  732. *
  733. * @par Example
  734. * The following connect condition function object can be used to output
  735. * information about the individual connection attempts:
  736. * @code struct my_connect_condition
  737. * {
  738. * template <typename Iterator>
  739. * Iterator operator()(
  740. * const boost::system::error_code& ec,
  741. * Iterator next)
  742. * {
  743. * if (ec) std::cout << "Error: " << ec.message() << std::endl;
  744. * std::cout << "Trying: " << next->endpoint() << std::endl;
  745. * return next;
  746. * }
  747. * }; @endcode
  748. * It would be used with the boost::asio::connect function as follows:
  749. * @code tcp::resolver r(io_service);
  750. * tcp::resolver::query q("host", "service");
  751. * tcp::socket s(io_service);
  752. *
  753. * // ...
  754. *
  755. * r.async_resolve(q, resolve_handler);
  756. *
  757. * // ...
  758. *
  759. * void resolve_handler(
  760. * const boost::system::error_code& ec,
  761. * tcp::resolver::iterator i)
  762. * {
  763. * if (!ec)
  764. * {
  765. * tcp::resolver::iterator end;
  766. * boost::asio::async_connect(s, i, end,
  767. * my_connect_condition(),
  768. * connect_handler);
  769. * }
  770. * }
  771. *
  772. * // ...
  773. *
  774. * void connect_handler(
  775. * const boost::system::error_code& ec,
  776. * tcp::resolver::iterator i)
  777. * {
  778. * if (ec)
  779. * {
  780. * // An error occurred.
  781. * }
  782. * else
  783. * {
  784. * std::cout << "Connected to: " << i->endpoint() << std::endl;
  785. * }
  786. * } @endcode
  787. */
  788. template <typename Protocol, typename SocketService, typename Iterator,
  789. typename ConnectCondition, typename ComposedConnectHandler>
  790. BOOST_ASIO_INITFN_RESULT_TYPE(ComposedConnectHandler,
  791. void (boost::system::error_code, Iterator))
  792. async_connect(basic_socket<Protocol, SocketService>& s,
  793. Iterator begin, Iterator end, ConnectCondition connect_condition,
  794. BOOST_ASIO_MOVE_ARG(ComposedConnectHandler) handler);
  795. /*@}*/
  796. } // namespace asio
  797. } // namespace boost
  798. #include <boost/asio/detail/pop_options.hpp>
  799. #include <boost/asio/impl/connect.hpp>
  800. #endif