Alexander Afanasyev | a9034b0 | 2014-01-26 18:32:02 -0800 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
Junxiao Shi | a1937bf | 2014-11-06 11:43:40 -0700 | [diff] [blame] | 3 | * Copyright (c) 2014, Regents of the University of California, |
| 4 | * Arizona Board of Regents, |
| 5 | * Colorado State University, |
| 6 | * University Pierre & Marie Curie, Sorbonne University, |
| 7 | * Washington University in St. Louis, |
| 8 | * Beijing Institute of Technology, |
| 9 | * The University of Memphis |
Alexander Afanasyev | 9bcbc7c | 2014-04-06 19:37:37 -0700 | [diff] [blame] | 10 | * |
| 11 | * This file is part of NFD (Named Data Networking Forwarding Daemon). |
| 12 | * See AUTHORS.md for complete list of NFD authors and contributors. |
| 13 | * |
| 14 | * NFD is free software: you can redistribute it and/or modify it under the terms |
| 15 | * of the GNU General Public License as published by the Free Software Foundation, |
| 16 | * either version 3 of the License, or (at your option) any later version. |
| 17 | * |
| 18 | * NFD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; |
| 19 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR |
| 20 | * PURPOSE. See the GNU General Public License for more details. |
| 21 | * |
| 22 | * You should have received a copy of the GNU General Public License along with |
| 23 | * NFD, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>. |
Junxiao Shi | a1937bf | 2014-11-06 11:43:40 -0700 | [diff] [blame] | 24 | */ |
Alexander Afanasyev | a9034b0 | 2014-01-26 18:32:02 -0800 | [diff] [blame] | 25 | |
| 26 | #include "tcp-channel.hpp" |
Junxiao Shi | 61e3cc5 | 2014-03-03 20:40:28 -0700 | [diff] [blame] | 27 | #include "core/global-io.hpp" |
Alexander Afanasyev | a9034b0 | 2014-01-26 18:32:02 -0800 | [diff] [blame] | 28 | |
Alexander Afanasyev | 18bbf81 | 2014-01-29 01:40:23 -0800 | [diff] [blame] | 29 | namespace nfd { |
Alexander Afanasyev | a9034b0 | 2014-01-26 18:32:02 -0800 | [diff] [blame] | 30 | |
Alexander Afanasyev | 3958b01 | 2014-01-31 15:06:13 -0800 | [diff] [blame] | 31 | NFD_LOG_INIT("TcpChannel"); |
| 32 | |
Alexander Afanasyev | 8ad71ba | 2014-01-27 00:07:14 -0800 | [diff] [blame] | 33 | using namespace boost::asio; |
| 34 | |
Junxiao Shi | 61e3cc5 | 2014-03-03 20:40:28 -0700 | [diff] [blame] | 35 | TcpChannel::TcpChannel(const tcp::Endpoint& localEndpoint) |
| 36 | : m_localEndpoint(localEndpoint) |
Alexander Afanasyev | 53a6fd3 | 2014-03-23 00:00:04 -0700 | [diff] [blame] | 37 | , m_isListening(false) |
Junxiao Shi | 61e3cc5 | 2014-03-03 20:40:28 -0700 | [diff] [blame] | 38 | { |
| 39 | this->setUri(FaceUri(localEndpoint)); |
| 40 | } |
| 41 | |
| 42 | TcpChannel::~TcpChannel() |
Alexander Afanasyev | a9034b0 | 2014-01-26 18:32:02 -0800 | [diff] [blame] | 43 | { |
| 44 | } |
| 45 | |
| 46 | void |
Alexander Afanasyev | 855a53c | 2014-01-27 12:03:00 -0800 | [diff] [blame] | 47 | TcpChannel::listen(const FaceCreatedCallback& onFaceCreated, |
| 48 | const ConnectFailedCallback& onAcceptFailed, |
| 49 | int backlog/* = tcp::acceptor::max_connections*/) |
Alexander Afanasyev | a9034b0 | 2014-01-26 18:32:02 -0800 | [diff] [blame] | 50 | { |
Alexander Afanasyev | f698028 | 2014-05-13 18:28:40 -0700 | [diff] [blame] | 51 | m_acceptor = make_shared<ip::tcp::acceptor>(ref(getGlobalIoService())); |
Alexander Afanasyev | 8ad71ba | 2014-01-27 00:07:14 -0800 | [diff] [blame] | 52 | m_acceptor->open(m_localEndpoint.protocol()); |
| 53 | m_acceptor->set_option(ip::tcp::acceptor::reuse_address(true)); |
Alexander Afanasyev | eee71fd | 2014-03-13 17:40:33 -0700 | [diff] [blame] | 54 | if (m_localEndpoint.address().is_v6()) |
| 55 | { |
| 56 | m_acceptor->set_option(ip::v6_only(true)); |
| 57 | } |
Alexander Afanasyev | 8ad71ba | 2014-01-27 00:07:14 -0800 | [diff] [blame] | 58 | m_acceptor->bind(m_localEndpoint); |
| 59 | m_acceptor->listen(backlog); |
| 60 | |
| 61 | shared_ptr<ip::tcp::socket> clientSocket = |
Alexander Afanasyev | f698028 | 2014-05-13 18:28:40 -0700 | [diff] [blame] | 62 | make_shared<ip::tcp::socket>(ref(getGlobalIoService())); |
Alexander Afanasyev | 8ad71ba | 2014-01-27 00:07:14 -0800 | [diff] [blame] | 63 | m_acceptor->async_accept(*clientSocket, |
Alexander Afanasyev | a16abd2 | 2014-01-31 18:12:29 -0800 | [diff] [blame] | 64 | bind(&TcpChannel::handleSuccessfulAccept, this, _1, |
Alexander Afanasyev | 855a53c | 2014-01-27 12:03:00 -0800 | [diff] [blame] | 65 | clientSocket, |
Alexander Afanasyev | a16abd2 | 2014-01-31 18:12:29 -0800 | [diff] [blame] | 66 | onFaceCreated, onAcceptFailed)); |
Alexander Afanasyev | 53a6fd3 | 2014-03-23 00:00:04 -0700 | [diff] [blame] | 67 | |
| 68 | m_isListening = true; |
Alexander Afanasyev | a9034b0 | 2014-01-26 18:32:02 -0800 | [diff] [blame] | 69 | } |
| 70 | |
| 71 | void |
Alexander Afanasyev | 8ad71ba | 2014-01-27 00:07:14 -0800 | [diff] [blame] | 72 | TcpChannel::connect(const tcp::Endpoint& remoteEndpoint, |
Alexander Afanasyev | 855a53c | 2014-01-27 12:03:00 -0800 | [diff] [blame] | 73 | const TcpChannel::FaceCreatedCallback& onFaceCreated, |
| 74 | const TcpChannel::ConnectFailedCallback& onConnectFailed, |
Alexander Afanasyev | eb3197f | 2014-03-17 19:28:18 -0700 | [diff] [blame] | 75 | const time::seconds& timeout/* = time::seconds(4)*/) |
Alexander Afanasyev | a9034b0 | 2014-01-26 18:32:02 -0800 | [diff] [blame] | 76 | { |
Alexander Afanasyev | 334b714 | 2014-01-28 12:59:39 -0800 | [diff] [blame] | 77 | ChannelFaceMap::iterator i = m_channelFaces.find(remoteEndpoint); |
| 78 | if (i != m_channelFaces.end()) { |
| 79 | onFaceCreated(i->second); |
| 80 | return; |
| 81 | } |
| 82 | |
Alexander Afanasyev | 8ad71ba | 2014-01-27 00:07:14 -0800 | [diff] [blame] | 83 | shared_ptr<ip::tcp::socket> clientSocket = |
Alexander Afanasyev | f698028 | 2014-05-13 18:28:40 -0700 | [diff] [blame] | 84 | make_shared<ip::tcp::socket>(ref(getGlobalIoService())); |
Alexander Afanasyev | 8ad71ba | 2014-01-27 00:07:14 -0800 | [diff] [blame] | 85 | |
Alexander Afanasyev | 1886180 | 2014-06-13 17:49:03 -0700 | [diff] [blame] | 86 | EventId connectTimeoutEvent = scheduler::schedule(timeout, |
| 87 | bind(&TcpChannel::handleFailedConnect, this, |
| 88 | clientSocket, onConnectFailed)); |
Alexander Afanasyev | 8ad71ba | 2014-01-27 00:07:14 -0800 | [diff] [blame] | 89 | |
Alexander Afanasyev | 8ad71ba | 2014-01-27 00:07:14 -0800 | [diff] [blame] | 90 | clientSocket->async_connect(remoteEndpoint, |
Alexander Afanasyev | 855a53c | 2014-01-27 12:03:00 -0800 | [diff] [blame] | 91 | bind(&TcpChannel::handleSuccessfulConnect, this, _1, |
Alexander Afanasyev | 1886180 | 2014-06-13 17:49:03 -0700 | [diff] [blame] | 92 | clientSocket, connectTimeoutEvent, |
Alexander Afanasyev | 855a53c | 2014-01-27 12:03:00 -0800 | [diff] [blame] | 93 | onFaceCreated, onConnectFailed)); |
Alexander Afanasyev | a9034b0 | 2014-01-26 18:32:02 -0800 | [diff] [blame] | 94 | } |
| 95 | |
Alexander Afanasyev | 8ad71ba | 2014-01-27 00:07:14 -0800 | [diff] [blame] | 96 | void |
| 97 | TcpChannel::connect(const std::string& remoteHost, const std::string& remotePort, |
Alexander Afanasyev | 855a53c | 2014-01-27 12:03:00 -0800 | [diff] [blame] | 98 | const TcpChannel::FaceCreatedCallback& onFaceCreated, |
| 99 | const TcpChannel::ConnectFailedCallback& onConnectFailed, |
Alexander Afanasyev | eb3197f | 2014-03-17 19:28:18 -0700 | [diff] [blame] | 100 | const time::seconds& timeout/* = time::seconds(4)*/) |
Alexander Afanasyev | 8ad71ba | 2014-01-27 00:07:14 -0800 | [diff] [blame] | 101 | { |
| 102 | shared_ptr<ip::tcp::socket> clientSocket = |
Alexander Afanasyev | f698028 | 2014-05-13 18:28:40 -0700 | [diff] [blame] | 103 | make_shared<ip::tcp::socket>(ref(getGlobalIoService())); |
Alexander Afanasyev | 8ad71ba | 2014-01-27 00:07:14 -0800 | [diff] [blame] | 104 | |
Alexander Afanasyev | 8ad71ba | 2014-01-27 00:07:14 -0800 | [diff] [blame] | 105 | ip::tcp::resolver::query query(remoteHost, remotePort); |
| 106 | shared_ptr<ip::tcp::resolver> resolver = |
Alexander Afanasyev | f698028 | 2014-05-13 18:28:40 -0700 | [diff] [blame] | 107 | make_shared<ip::tcp::resolver>(ref(getGlobalIoService())); |
Alexander Afanasyev | 8ad71ba | 2014-01-27 00:07:14 -0800 | [diff] [blame] | 108 | |
Alexander Afanasyev | 1886180 | 2014-06-13 17:49:03 -0700 | [diff] [blame] | 109 | EventId connectTimeoutEvent = scheduler::schedule(timeout, |
| 110 | bind(&TcpChannel::handleFailedConnect, this, |
| 111 | clientSocket, onConnectFailed)); |
| 112 | |
Alexander Afanasyev | 8ad71ba | 2014-01-27 00:07:14 -0800 | [diff] [blame] | 113 | resolver->async_resolve(query, |
Davide Pesavento | 855bf29 | 2014-02-27 03:58:01 +0100 | [diff] [blame] | 114 | bind(&TcpChannel::handleEndpointResolution, this, _1, _2, |
Alexander Afanasyev | 1886180 | 2014-06-13 17:49:03 -0700 | [diff] [blame] | 115 | clientSocket, connectTimeoutEvent, |
Alexander Afanasyev | 3958b01 | 2014-01-31 15:06:13 -0800 | [diff] [blame] | 116 | onFaceCreated, onConnectFailed, |
| 117 | resolver)); |
Alexander Afanasyev | 8ad71ba | 2014-01-27 00:07:14 -0800 | [diff] [blame] | 118 | } |
| 119 | |
Alexander Afanasyev | a0a10fb | 2014-02-13 19:56:15 -0800 | [diff] [blame] | 120 | size_t |
| 121 | TcpChannel::size() const |
| 122 | { |
| 123 | return m_channelFaces.size(); |
| 124 | } |
Alexander Afanasyev | 8ad71ba | 2014-01-27 00:07:14 -0800 | [diff] [blame] | 125 | |
| 126 | void |
Alexander Afanasyev | a16abd2 | 2014-01-31 18:12:29 -0800 | [diff] [blame] | 127 | TcpChannel::createFace(const shared_ptr<ip::tcp::socket>& socket, |
Alexander Afanasyev | 355c066 | 2014-03-20 18:08:17 -0700 | [diff] [blame] | 128 | const FaceCreatedCallback& onFaceCreated, |
| 129 | bool isOnDemand) |
Alexander Afanasyev | a16abd2 | 2014-01-31 18:12:29 -0800 | [diff] [blame] | 130 | { |
Alexander Afanasyev | a16abd2 | 2014-01-31 18:12:29 -0800 | [diff] [blame] | 131 | tcp::Endpoint remoteEndpoint = socket->remote_endpoint(); |
Alexander Afanasyev | a0a10fb | 2014-02-13 19:56:15 -0800 | [diff] [blame] | 132 | |
Alexander Afanasyev | bd220a0 | 2014-02-20 00:29:56 -0800 | [diff] [blame] | 133 | shared_ptr<Face> face; |
Steve DiBenedetto | 2aa4eca | 2014-06-20 10:47:40 -0600 | [diff] [blame] | 134 | |
| 135 | ChannelFaceMap::iterator faceMapPos = m_channelFaces.find(remoteEndpoint); |
| 136 | if (faceMapPos == m_channelFaces.end()) |
| 137 | { |
| 138 | if (socket->local_endpoint().address().is_loopback()) |
| 139 | face = make_shared<TcpLocalFace>(socket, isOnDemand); |
| 140 | else |
| 141 | face = make_shared<TcpFace>(socket, isOnDemand); |
| 142 | |
| 143 | face->onFail += bind(&TcpChannel::afterFaceFailed, this, remoteEndpoint); |
| 144 | |
| 145 | m_channelFaces[remoteEndpoint] = face; |
| 146 | } |
Alexander Afanasyev | bd220a0 | 2014-02-20 00:29:56 -0800 | [diff] [blame] | 147 | else |
Steve DiBenedetto | 2aa4eca | 2014-06-20 10:47:40 -0600 | [diff] [blame] | 148 | { |
| 149 | // we've already created a a face for this endpoint, just reuse it |
| 150 | face = faceMapPos->second; |
Junxiao Shi | 61e3cc5 | 2014-03-03 20:40:28 -0700 | [diff] [blame] | 151 | |
Steve DiBenedetto | 2aa4eca | 2014-06-20 10:47:40 -0600 | [diff] [blame] | 152 | boost::system::error_code error; |
| 153 | socket->shutdown(ip::tcp::socket::shutdown_both, error); |
| 154 | socket->close(error); |
| 155 | } |
Alexander Afanasyev | a0a10fb | 2014-02-13 19:56:15 -0800 | [diff] [blame] | 156 | |
Steve DiBenedetto | 2aa4eca | 2014-06-20 10:47:40 -0600 | [diff] [blame] | 157 | // Need to invoke the callback regardless of whether or not we have already created |
| 158 | // the face so that control responses and such can be sent. |
Alexander Afanasyev | a0a10fb | 2014-02-13 19:56:15 -0800 | [diff] [blame] | 159 | onFaceCreated(face); |
Alexander Afanasyev | a16abd2 | 2014-01-31 18:12:29 -0800 | [diff] [blame] | 160 | } |
| 161 | |
| 162 | void |
Alexander Afanasyev | a0a10fb | 2014-02-13 19:56:15 -0800 | [diff] [blame] | 163 | TcpChannel::afterFaceFailed(tcp::Endpoint &remoteEndpoint) |
| 164 | { |
| 165 | NFD_LOG_DEBUG("afterFaceFailed: " << remoteEndpoint); |
| 166 | m_channelFaces.erase(remoteEndpoint); |
| 167 | } |
| 168 | |
| 169 | void |
Alexander Afanasyev | a16abd2 | 2014-01-31 18:12:29 -0800 | [diff] [blame] | 170 | TcpChannel::handleSuccessfulAccept(const boost::system::error_code& error, |
| 171 | const shared_ptr<boost::asio::ip::tcp::socket>& socket, |
| 172 | const FaceCreatedCallback& onFaceCreated, |
| 173 | const ConnectFailedCallback& onAcceptFailed) |
Alexander Afanasyev | 8ad71ba | 2014-01-27 00:07:14 -0800 | [diff] [blame] | 174 | { |
| 175 | if (error) { |
| 176 | if (error == boost::system::errc::operation_canceled) // when socket is closed by someone |
| 177 | return; |
| 178 | |
Alexander Afanasyev | 3958b01 | 2014-01-31 15:06:13 -0800 | [diff] [blame] | 179 | NFD_LOG_DEBUG("Connect to remote endpoint failed: " |
| 180 | << error.category().message(error.value())); |
Alexander Afanasyev | 5f1ec25 | 2014-02-28 10:59:17 -0800 | [diff] [blame] | 181 | |
| 182 | if (static_cast<bool>(onAcceptFailed)) |
| 183 | onAcceptFailed("Connect to remote endpoint failed: " + |
| 184 | error.category().message(error.value())); |
Alexander Afanasyev | 8ad71ba | 2014-01-27 00:07:14 -0800 | [diff] [blame] | 185 | return; |
| 186 | } |
| 187 | |
Alexander Afanasyev | a16abd2 | 2014-01-31 18:12:29 -0800 | [diff] [blame] | 188 | // prepare accepting the next connection |
| 189 | shared_ptr<ip::tcp::socket> clientSocket = |
Alexander Afanasyev | f698028 | 2014-05-13 18:28:40 -0700 | [diff] [blame] | 190 | make_shared<ip::tcp::socket>(ref(getGlobalIoService())); |
Alexander Afanasyev | a16abd2 | 2014-01-31 18:12:29 -0800 | [diff] [blame] | 191 | m_acceptor->async_accept(*clientSocket, |
| 192 | bind(&TcpChannel::handleSuccessfulAccept, this, _1, |
| 193 | clientSocket, |
| 194 | onFaceCreated, onAcceptFailed)); |
Alexander Afanasyev | 334b714 | 2014-01-28 12:59:39 -0800 | [diff] [blame] | 195 | |
Alexander Afanasyev | a16abd2 | 2014-01-31 18:12:29 -0800 | [diff] [blame] | 196 | NFD_LOG_DEBUG("[" << m_localEndpoint << "] " |
| 197 | "<< Connection from " << socket->remote_endpoint()); |
Alexander Afanasyev | 355c066 | 2014-03-20 18:08:17 -0700 | [diff] [blame] | 198 | createFace(socket, onFaceCreated, true); |
Alexander Afanasyev | 8ad71ba | 2014-01-27 00:07:14 -0800 | [diff] [blame] | 199 | } |
| 200 | |
| 201 | void |
| 202 | TcpChannel::handleSuccessfulConnect(const boost::system::error_code& error, |
| 203 | const shared_ptr<ip::tcp::socket>& socket, |
Alexander Afanasyev | 1886180 | 2014-06-13 17:49:03 -0700 | [diff] [blame] | 204 | const EventId& connectTimeoutEvent, |
Alexander Afanasyev | 855a53c | 2014-01-27 12:03:00 -0800 | [diff] [blame] | 205 | const FaceCreatedCallback& onFaceCreated, |
| 206 | const ConnectFailedCallback& onConnectFailed) |
Alexander Afanasyev | 8ad71ba | 2014-01-27 00:07:14 -0800 | [diff] [blame] | 207 | { |
Alexander Afanasyev | 1886180 | 2014-06-13 17:49:03 -0700 | [diff] [blame] | 208 | scheduler::cancel(connectTimeoutEvent); |
Alexander Afanasyev | 8ad71ba | 2014-01-27 00:07:14 -0800 | [diff] [blame] | 209 | |
Alexander Afanasyev | 7465d5f | 2014-07-07 10:19:42 -0700 | [diff] [blame] | 210 | #if (BOOST_VERSION == 105400) |
| 211 | // To handle regression in Boost 1.54 |
| 212 | // https://svn.boost.org/trac/boost/ticket/8795 |
| 213 | boost::system::error_code anotherErrorCode; |
| 214 | socket->remote_endpoint(anotherErrorCode); |
| 215 | if (error || anotherErrorCode) { |
| 216 | #else |
Alexander Afanasyev | 8ad71ba | 2014-01-27 00:07:14 -0800 | [diff] [blame] | 217 | if (error) { |
Alexander Afanasyev | 7465d5f | 2014-07-07 10:19:42 -0700 | [diff] [blame] | 218 | #endif |
| 219 | |
Alexander Afanasyev | 8ad71ba | 2014-01-27 00:07:14 -0800 | [diff] [blame] | 220 | if (error == boost::system::errc::operation_canceled) // when socket is closed by someone |
| 221 | return; |
| 222 | |
| 223 | socket->close(); |
Junxiao Shi | 61e3cc5 | 2014-03-03 20:40:28 -0700 | [diff] [blame] | 224 | |
Alexander Afanasyev | 3958b01 | 2014-01-31 15:06:13 -0800 | [diff] [blame] | 225 | NFD_LOG_DEBUG("Connect to remote endpoint failed: " |
| 226 | << error.category().message(error.value())); |
Junxiao Shi | 61e3cc5 | 2014-03-03 20:40:28 -0700 | [diff] [blame] | 227 | |
Alexander Afanasyev | 8ad71ba | 2014-01-27 00:07:14 -0800 | [diff] [blame] | 228 | onConnectFailed("Connect to remote endpoint failed: " + |
| 229 | error.category().message(error.value())); |
| 230 | return; |
| 231 | } |
| 232 | |
Alexander Afanasyev | a16abd2 | 2014-01-31 18:12:29 -0800 | [diff] [blame] | 233 | NFD_LOG_DEBUG("[" << m_localEndpoint << "] " |
| 234 | ">> Connection to " << socket->remote_endpoint()); |
Junxiao Shi | 61e3cc5 | 2014-03-03 20:40:28 -0700 | [diff] [blame] | 235 | |
Alexander Afanasyev | 355c066 | 2014-03-20 18:08:17 -0700 | [diff] [blame] | 236 | createFace(socket, onFaceCreated, false); |
Alexander Afanasyev | 8ad71ba | 2014-01-27 00:07:14 -0800 | [diff] [blame] | 237 | } |
| 238 | |
| 239 | void |
Alexander Afanasyev | 1886180 | 2014-06-13 17:49:03 -0700 | [diff] [blame] | 240 | TcpChannel::handleFailedConnect(const shared_ptr<ip::tcp::socket>& socket, |
Alexander Afanasyev | 855a53c | 2014-01-27 12:03:00 -0800 | [diff] [blame] | 241 | const ConnectFailedCallback& onConnectFailed) |
Alexander Afanasyev | 8ad71ba | 2014-01-27 00:07:14 -0800 | [diff] [blame] | 242 | { |
Alexander Afanasyev | 1886180 | 2014-06-13 17:49:03 -0700 | [diff] [blame] | 243 | NFD_LOG_DEBUG("Connect to remote endpoint timed out"); |
| 244 | onConnectFailed("Connect to remote endpoint timed out"); |
Alexander Afanasyev | 8ad71ba | 2014-01-27 00:07:14 -0800 | [diff] [blame] | 245 | socket->close(); // abort the connection |
| 246 | } |
| 247 | |
| 248 | void |
Davide Pesavento | 855bf29 | 2014-02-27 03:58:01 +0100 | [diff] [blame] | 249 | TcpChannel::handleEndpointResolution(const boost::system::error_code& error, |
| 250 | ip::tcp::resolver::iterator remoteEndpoint, |
| 251 | const shared_ptr<boost::asio::ip::tcp::socket>& socket, |
Alexander Afanasyev | 1886180 | 2014-06-13 17:49:03 -0700 | [diff] [blame] | 252 | const EventId& connectTimeoutEvent, |
Davide Pesavento | 855bf29 | 2014-02-27 03:58:01 +0100 | [diff] [blame] | 253 | const FaceCreatedCallback& onFaceCreated, |
| 254 | const ConnectFailedCallback& onConnectFailed, |
| 255 | const shared_ptr<ip::tcp::resolver>& resolver) |
Alexander Afanasyev | 8ad71ba | 2014-01-27 00:07:14 -0800 | [diff] [blame] | 256 | { |
| 257 | if (error || |
| 258 | remoteEndpoint == ip::tcp::resolver::iterator()) |
| 259 | { |
| 260 | if (error == boost::system::errc::operation_canceled) // when socket is closed by someone |
| 261 | return; |
| 262 | |
| 263 | socket->close(); |
Alexander Afanasyev | 1886180 | 2014-06-13 17:49:03 -0700 | [diff] [blame] | 264 | scheduler::cancel(connectTimeoutEvent); |
Alexander Afanasyev | 3958b01 | 2014-01-31 15:06:13 -0800 | [diff] [blame] | 265 | |
| 266 | NFD_LOG_DEBUG("Remote endpoint hostname or port cannot be resolved: " |
| 267 | << error.category().message(error.value())); |
Junxiao Shi | 61e3cc5 | 2014-03-03 20:40:28 -0700 | [diff] [blame] | 268 | |
Alexander Afanasyev | 8ad71ba | 2014-01-27 00:07:14 -0800 | [diff] [blame] | 269 | onConnectFailed("Remote endpoint hostname or port cannot be resolved: " + |
| 270 | error.category().message(error.value())); |
| 271 | return; |
| 272 | } |
| 273 | |
| 274 | // got endpoint, now trying to connect (only try the first resolution option) |
| 275 | socket->async_connect(*remoteEndpoint, |
Alexander Afanasyev | 855a53c | 2014-01-27 12:03:00 -0800 | [diff] [blame] | 276 | bind(&TcpChannel::handleSuccessfulConnect, this, _1, |
Alexander Afanasyev | 1886180 | 2014-06-13 17:49:03 -0700 | [diff] [blame] | 277 | socket, connectTimeoutEvent, |
Alexander Afanasyev | 855a53c | 2014-01-27 12:03:00 -0800 | [diff] [blame] | 278 | onFaceCreated, onConnectFailed)); |
Alexander Afanasyev | 8ad71ba | 2014-01-27 00:07:14 -0800 | [diff] [blame] | 279 | } |
| 280 | |
Alexander Afanasyev | 18bbf81 | 2014-01-29 01:40:23 -0800 | [diff] [blame] | 281 | } // namespace nfd |