• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<html>
2<head>
3<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
4<title>connect (6 of 12 overloads)</title>
5<link rel="stylesheet" href="../../../../../doc/src/boostbook.css" type="text/css">
6<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
7<link rel="home" href="../../../boost_asio.html" title="Boost.Asio">
8<link rel="up" href="../connect.html" title="connect">
9<link rel="prev" href="overload5.html" title="connect (5 of 12 overloads)">
10<link rel="next" href="overload7.html" title="connect (7 of 12 overloads)">
11</head>
12<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
13<table cellpadding="2" width="100%"><tr>
14<td valign="top"><img alt="Boost C++ Libraries" width="277" height="86" src="../../../../../boost.png"></td>
15<td align="center"><a href="../../../../../index.html">Home</a></td>
16<td align="center"><a href="../../../../../libs/libraries.htm">Libraries</a></td>
17<td align="center"><a href="http://www.boost.org/users/people.html">People</a></td>
18<td align="center"><a href="http://www.boost.org/users/faq.html">FAQ</a></td>
19<td align="center"><a href="../../../../../more/index.htm">More</a></td>
20</tr></table>
21<hr>
22<div class="spirit-nav">
23<a accesskey="p" href="overload5.html"><img src="../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../connect.html"><img src="../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../../boost_asio.html"><img src="../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="overload7.html"><img src="../../../../../doc/src/images/next.png" alt="Next"></a>
24</div>
25<div class="section">
26<div class="titlepage"><div><div><h4 class="title">
27<a name="boost_asio.reference.connect.overload6"></a><a class="link" href="overload6.html" title="connect (6 of 12 overloads)">connect (6
28        of 12 overloads)</a>
29</h4></div></div></div>
30<p>
31          Establishes a socket connection by trying each endpoint in a sequence.
32        </p>
33<pre class="programlisting">template&lt;
34    typename <a class="link" href="../Protocol.html" title="Protocol requirements">Protocol</a>,
35    typename <a class="link" href="../Executor1.html" title="Executor requirements">Executor</a>,
36    typename Iterator&gt;
37Iterator connect(
38    basic_socket&lt; Protocol, Executor &gt; &amp; s,
39    Iterator begin,
40    Iterator end,
41    boost::system::error_code &amp; ec);
42</pre>
43<p>
44          This function attempts to connect a socket to one of a sequence of endpoints.
45          It does this by repeated calls to the socket's <code class="computeroutput">connect</code> member
46          function, once for each endpoint in the sequence, until a connection is
47          successfully established.
48        </p>
49<h6>
50<a name="boost_asio.reference.connect.overload6.h0"></a>
51          <span class="phrase"><a name="boost_asio.reference.connect.overload6.parameters"></a></span><a class="link" href="overload6.html#boost_asio.reference.connect.overload6.parameters">Parameters</a>
52        </h6>
53<div class="variablelist">
54<p class="title"><b></b></p>
55<dl class="variablelist">
56<dt><span class="term">s</span></dt>
57<dd><p>
58                The socket to be connected. If the socket is already open, it will
59                be closed.
60              </p></dd>
61<dt><span class="term">begin</span></dt>
62<dd><p>
63                An iterator pointing to the start of a sequence of endpoints.
64              </p></dd>
65<dt><span class="term">end</span></dt>
66<dd><p>
67                An iterator pointing to the end of a sequence of endpoints.
68              </p></dd>
69<dt><span class="term">ec</span></dt>
70<dd><p>
71                Set to indicate what error occurred, if any. If the sequence is empty,
72                set to <code class="computeroutput">boost::asio::error::not_found</code>. Otherwise, contains
73                the error from the last connection attempt.
74              </p></dd>
75</dl>
76</div>
77<h6>
78<a name="boost_asio.reference.connect.overload6.h1"></a>
79          <span class="phrase"><a name="boost_asio.reference.connect.overload6.return_value"></a></span><a class="link" href="overload6.html#boost_asio.reference.connect.overload6.return_value">Return Value</a>
80        </h6>
81<p>
82          On success, an iterator denoting the successfully connected endpoint. Otherwise,
83          the end iterator.
84        </p>
85<h6>
86<a name="boost_asio.reference.connect.overload6.h2"></a>
87          <span class="phrase"><a name="boost_asio.reference.connect.overload6.example"></a></span><a class="link" href="overload6.html#boost_asio.reference.connect.overload6.example">Example</a>
88        </h6>
89<pre class="programlisting">tcp::resolver r(my_context);
90tcp::resolver::query q("host", "service");
91tcp::resolver::results_type e = r.resolve(q);
92tcp::socket s(my_context);
93boost::system::error_code ec;
94boost::asio::connect(s, e.begin(), e.end(), ec);
95if (ec)
96{
97  // An error occurred.
98}
99</pre>
100</div>
101<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
102<td align="left"></td>
103<td align="right"><div class="copyright-footer">Copyright © 2003-2020 Christopher M.
104      Kohlhoff<p>
105        Distributed under the Boost Software License, Version 1.0. (See accompanying
106        file LICENSE_1_0.txt or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>)
107      </p>
108</div></td>
109</tr></table>
110<hr>
111<div class="spirit-nav">
112<a accesskey="p" href="overload5.html"><img src="../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../connect.html"><img src="../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../../boost_asio.html"><img src="../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="overload7.html"><img src="../../../../../doc/src/images/next.png" alt="Next"></a>
113</div>
114</body>
115</html>
116