Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
Alexander Afanasyev | 319f2c8 | 2015-01-07 14:56:53 -0800 | [diff] [blame] | 3 | * Copyright (c) 2014-2015, 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/>. |
Steve DiBenedetto | ef04f27 | 2014-06-04 14:28:31 -0600 | [diff] [blame] | 24 | */ |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 25 | |
| 26 | #include "udp-factory.hpp" |
| 27 | #include "core/global-io.hpp" |
Steve DiBenedetto | ca53ac6 | 2014-03-27 19:58:40 -0600 | [diff] [blame] | 28 | #include "core/network-interface.hpp" |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 29 | |
Davide Pesavento | 292e5e1 | 2015-03-13 02:08:33 +0100 | [diff] [blame] | 30 | #ifdef __linux__ |
| 31 | #include <cerrno> // for errno |
| 32 | #include <cstring> // for std::strerror() |
| 33 | #include <sys/socket.h> // for setsockopt() |
Giulio Grassi | 6d7176d | 2014-04-16 16:08:48 +0200 | [diff] [blame] | 34 | #endif |
| 35 | |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 36 | namespace nfd { |
| 37 | |
| 38 | using namespace boost::asio; |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 39 | |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 40 | NFD_LOG_INIT("UdpFactory"); |
| 41 | |
Alexander Afanasyev | 70aaf8a | 2014-12-13 00:44:22 -0800 | [diff] [blame] | 42 | static const boost::asio::ip::address_v4 ALL_V4_ENDPOINT( |
| 43 | boost::asio::ip::address_v4::from_string("0.0.0.0")); |
| 44 | |
| 45 | static const boost::asio::ip::address_v6 ALL_V6_ENDPOINT( |
| 46 | boost::asio::ip::address_v6::from_string("::")); |
| 47 | |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 48 | UdpFactory::UdpFactory(const std::string& defaultPort/* = "6363"*/) |
| 49 | : m_defaultPort(defaultPort) |
| 50 | { |
| 51 | } |
| 52 | |
Steve DiBenedetto | ca53ac6 | 2014-03-27 19:58:40 -0600 | [diff] [blame] | 53 | void |
| 54 | UdpFactory::prohibitEndpoint(const udp::Endpoint& endpoint) |
| 55 | { |
| 56 | using namespace boost::asio::ip; |
| 57 | |
Steve DiBenedetto | ca53ac6 | 2014-03-27 19:58:40 -0600 | [diff] [blame] | 58 | const address& address = endpoint.address(); |
| 59 | |
| 60 | if (address.is_v4() && address == ALL_V4_ENDPOINT) |
| 61 | { |
| 62 | prohibitAllIpv4Endpoints(endpoint.port()); |
| 63 | } |
| 64 | else if (endpoint.address().is_v6() && address == ALL_V6_ENDPOINT) |
| 65 | { |
| 66 | prohibitAllIpv6Endpoints(endpoint.port()); |
| 67 | } |
| 68 | |
Alexander Afanasyev | 70aaf8a | 2014-12-13 00:44:22 -0800 | [diff] [blame] | 69 | NFD_LOG_TRACE("prohibiting UDP " << endpoint); |
Steve DiBenedetto | ca53ac6 | 2014-03-27 19:58:40 -0600 | [diff] [blame] | 70 | |
| 71 | m_prohibitedEndpoints.insert(endpoint); |
| 72 | } |
| 73 | |
| 74 | void |
| 75 | UdpFactory::prohibitAllIpv4Endpoints(const uint16_t port) |
| 76 | { |
| 77 | using namespace boost::asio::ip; |
| 78 | |
Davide Pesavento | b499a60 | 2014-11-18 22:36:56 +0100 | [diff] [blame] | 79 | for (const NetworkInterfaceInfo& nic : listNetworkInterfaces()) { |
| 80 | for (const address_v4& addr : nic.ipv4Addresses) { |
Alexander Afanasyev | 70aaf8a | 2014-12-13 00:44:22 -0800 | [diff] [blame] | 81 | if (addr != ALL_V4_ENDPOINT) { |
| 82 | prohibitEndpoint(udp::Endpoint(addr, port)); |
| 83 | } |
Steve DiBenedetto | ca53ac6 | 2014-03-27 19:58:40 -0600 | [diff] [blame] | 84 | } |
| 85 | |
Alexander Afanasyev | 70aaf8a | 2014-12-13 00:44:22 -0800 | [diff] [blame] | 86 | if (nic.isBroadcastCapable() && nic.broadcastAddress != ALL_V4_ENDPOINT) |
Davide Pesavento | b499a60 | 2014-11-18 22:36:56 +0100 | [diff] [blame] | 87 | { |
| 88 | NFD_LOG_TRACE("prohibiting broadcast address: " << nic.broadcastAddress.to_string()); |
| 89 | prohibitEndpoint(udp::Endpoint(nic.broadcastAddress, port)); |
| 90 | } |
| 91 | } |
| 92 | |
Steve DiBenedetto | ca53ac6 | 2014-03-27 19:58:40 -0600 | [diff] [blame] | 93 | prohibitEndpoint(udp::Endpoint(address::from_string("255.255.255.255"), port)); |
| 94 | } |
| 95 | |
| 96 | void |
| 97 | UdpFactory::prohibitAllIpv6Endpoints(const uint16_t port) |
| 98 | { |
| 99 | using namespace boost::asio::ip; |
| 100 | |
Davide Pesavento | b499a60 | 2014-11-18 22:36:56 +0100 | [diff] [blame] | 101 | for (const NetworkInterfaceInfo& nic : listNetworkInterfaces()) { |
| 102 | for (const address_v6& addr : nic.ipv6Addresses) { |
Alexander Afanasyev | 70aaf8a | 2014-12-13 00:44:22 -0800 | [diff] [blame] | 103 | if (addr != ALL_V6_ENDPOINT) { |
| 104 | prohibitEndpoint(udp::Endpoint(addr, port)); |
| 105 | } |
Steve DiBenedetto | ca53ac6 | 2014-03-27 19:58:40 -0600 | [diff] [blame] | 106 | } |
Davide Pesavento | b499a60 | 2014-11-18 22:36:56 +0100 | [diff] [blame] | 107 | } |
Steve DiBenedetto | ca53ac6 | 2014-03-27 19:58:40 -0600 | [diff] [blame] | 108 | } |
| 109 | |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 110 | shared_ptr<UdpChannel> |
| 111 | UdpFactory::createChannel(const udp::Endpoint& endpoint, |
Alexander Afanasyev | eb3197f | 2014-03-17 19:28:18 -0700 | [diff] [blame] | 112 | const time::seconds& timeout) |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 113 | { |
Davide Pesavento | b499a60 | 2014-11-18 22:36:56 +0100 | [diff] [blame] | 114 | NFD_LOG_DEBUG("Creating unicast channel " << endpoint); |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 115 | |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 116 | shared_ptr<UdpChannel> channel = findChannel(endpoint); |
| 117 | if (static_cast<bool>(channel)) |
| 118 | return channel; |
| 119 | |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 120 | //checking if the endpoint is already in use for multicast face |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 121 | shared_ptr<MulticastUdpFace> multicast = findMulticastFace(endpoint); |
| 122 | if (static_cast<bool>(multicast)) |
| 123 | throw Error("Cannot create the requested UDP unicast channel, local " |
| 124 | "endpoint is already allocated for a UDP multicast face"); |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 125 | |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 126 | if (endpoint.address().is_multicast()) { |
| 127 | throw Error("This method is only for unicast channel. The provided " |
| 128 | "endpoint is multicast. Use createMulticastFace to " |
| 129 | "create a multicast face"); |
| 130 | } |
| 131 | |
Alexander Afanasyev | f698028 | 2014-05-13 18:28:40 -0700 | [diff] [blame] | 132 | channel = make_shared<UdpChannel>(endpoint, timeout); |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 133 | m_channels[endpoint] = channel; |
Steve DiBenedetto | ca53ac6 | 2014-03-27 19:58:40 -0600 | [diff] [blame] | 134 | prohibitEndpoint(endpoint); |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 135 | |
| 136 | return channel; |
| 137 | } |
| 138 | |
| 139 | shared_ptr<UdpChannel> |
Alexander Afanasyev | 0e156df | 2015-01-26 22:33:43 -0800 | [diff] [blame] | 140 | UdpFactory::createChannel(const std::string& localIp, |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 141 | const std::string& localPort, |
Alexander Afanasyev | eb3197f | 2014-03-17 19:28:18 -0700 | [diff] [blame] | 142 | const time::seconds& timeout) |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 143 | { |
Alexander Afanasyev | 0e156df | 2015-01-26 22:33:43 -0800 | [diff] [blame] | 144 | using namespace boost::asio::ip; |
| 145 | udp::Endpoint endpoint(address::from_string(localIp), boost::lexical_cast<uint16_t>(localPort)); |
| 146 | return createChannel(endpoint, timeout); |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 147 | } |
| 148 | |
| 149 | shared_ptr<MulticastUdpFace> |
| 150 | UdpFactory::createMulticastFace(const udp::Endpoint& localEndpoint, |
Giulio Grassi | 6d7176d | 2014-04-16 16:08:48 +0200 | [diff] [blame] | 151 | const udp::Endpoint& multicastEndpoint, |
Davide Pesavento | 292e5e1 | 2015-03-13 02:08:33 +0100 | [diff] [blame] | 152 | const std::string& networkInterfaceName/* = ""*/) |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 153 | { |
Davide Pesavento | 292e5e1 | 2015-03-13 02:08:33 +0100 | [diff] [blame] | 154 | // checking if the local and multicast endpoints are already in use for a multicast face |
| 155 | shared_ptr<MulticastUdpFace> face = findMulticastFace(localEndpoint); |
| 156 | if (static_cast<bool>(face)) { |
| 157 | if (face->getMulticastGroup() == multicastEndpoint) |
| 158 | return face; |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 159 | else |
| 160 | throw Error("Cannot create the requested UDP multicast face, local " |
| 161 | "endpoint is already allocated for a UDP multicast face " |
| 162 | "on a different multicast group"); |
| 163 | } |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 164 | |
Davide Pesavento | 292e5e1 | 2015-03-13 02:08:33 +0100 | [diff] [blame] | 165 | // checking if the local endpoint is already in use for a unicast channel |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 166 | shared_ptr<UdpChannel> unicast = findChannel(localEndpoint); |
| 167 | if (static_cast<bool>(unicast)) { |
| 168 | throw Error("Cannot create the requested UDP multicast face, local " |
| 169 | "endpoint is already allocated for a UDP unicast channel"); |
| 170 | } |
| 171 | |
Steve DiBenedetto | ca53ac6 | 2014-03-27 19:58:40 -0600 | [diff] [blame] | 172 | if (m_prohibitedEndpoints.find(multicastEndpoint) != m_prohibitedEndpoints.end()) { |
| 173 | throw Error("Cannot create the requested UDP multicast face, " |
| 174 | "remote endpoint is owned by this NFD instance"); |
| 175 | } |
| 176 | |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 177 | if (localEndpoint.address().is_v6() || multicastEndpoint.address().is_v6()) { |
| 178 | throw Error("IPv6 multicast is not supported yet. Please provide an IPv4 address"); |
| 179 | } |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 180 | |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 181 | if (localEndpoint.port() != multicastEndpoint.port()) { |
| 182 | throw Error("Cannot create the requested UDP multicast face, " |
| 183 | "both endpoints should have the same port number. "); |
| 184 | } |
| 185 | |
| 186 | if (!multicastEndpoint.address().is_multicast()) { |
| 187 | throw Error("Cannot create the requested UDP multicast face, " |
| 188 | "the multicast group given as input is not a multicast address"); |
| 189 | } |
| 190 | |
Davide Pesavento | 292e5e1 | 2015-03-13 02:08:33 +0100 | [diff] [blame] | 191 | ip::udp::socket receiveSocket(getGlobalIoService()); |
| 192 | receiveSocket.open(multicastEndpoint.protocol()); |
| 193 | receiveSocket.set_option(ip::udp::socket::reuse_address(true)); |
| 194 | receiveSocket.bind(multicastEndpoint); |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 195 | |
Davide Pesavento | 292e5e1 | 2015-03-13 02:08:33 +0100 | [diff] [blame] | 196 | ip::udp::socket sendSocket(getGlobalIoService()); |
| 197 | sendSocket.open(multicastEndpoint.protocol()); |
| 198 | sendSocket.set_option(ip::udp::socket::reuse_address(true)); |
| 199 | sendSocket.set_option(ip::multicast::enable_loopback(false)); |
| 200 | sendSocket.bind(udp::Endpoint(ip::address_v4::any(), multicastEndpoint.port())); |
| 201 | if (localEndpoint.address() != ALL_V4_ENDPOINT) |
| 202 | sendSocket.set_option(ip::multicast::outbound_interface(localEndpoint.address().to_v4())); |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 203 | |
Davide Pesavento | 292e5e1 | 2015-03-13 02:08:33 +0100 | [diff] [blame] | 204 | sendSocket.set_option(ip::multicast::join_group(multicastEndpoint.address().to_v4(), |
| 205 | localEndpoint.address().to_v4())); |
| 206 | receiveSocket.set_option(ip::multicast::join_group(multicastEndpoint.address().to_v4(), |
Alexander Afanasyev | dc01700 | 2014-06-18 16:37:54 -0700 | [diff] [blame] | 207 | localEndpoint.address().to_v4())); |
| 208 | |
Davide Pesavento | 292e5e1 | 2015-03-13 02:08:33 +0100 | [diff] [blame] | 209 | #ifdef __linux__ |
| 210 | /* |
| 211 | * On Linux, if there is more than one MulticastUdpFace for the same multicast |
| 212 | * group but they are bound to different network interfaces, the socket needs |
| 213 | * to be bound to the specific interface using SO_BINDTODEVICE, otherwise the |
| 214 | * face will receive all packets sent to the other interfaces as well. |
| 215 | * This happens only on Linux. On OS X, the ip::multicast::join_group option |
| 216 | * is enough to get the desired behaviour. |
| 217 | */ |
Giulio Grassi | 6d7176d | 2014-04-16 16:08:48 +0200 | [diff] [blame] | 218 | if (!networkInterfaceName.empty()) { |
Davide Pesavento | 292e5e1 | 2015-03-13 02:08:33 +0100 | [diff] [blame] | 219 | if (::setsockopt(receiveSocket.native_handle(), SOL_SOCKET, SO_BINDTODEVICE, |
| 220 | networkInterfaceName.c_str(), networkInterfaceName.size() + 1) < 0) { |
| 221 | throw Error("Cannot bind multicast face to " + networkInterfaceName + |
| 222 | ": " + std::strerror(errno)); |
Giulio Grassi | 6d7176d | 2014-04-16 16:08:48 +0200 | [diff] [blame] | 223 | } |
| 224 | } |
Giulio Grassi | 6d7176d | 2014-04-16 16:08:48 +0200 | [diff] [blame] | 225 | #endif |
| 226 | |
Davide Pesavento | 292e5e1 | 2015-03-13 02:08:33 +0100 | [diff] [blame] | 227 | face = make_shared<MulticastUdpFace>(multicastEndpoint, FaceUri(localEndpoint), |
| 228 | std::move(receiveSocket), std::move(sendSocket)); |
Junxiao Shi | c099ddb | 2014-12-25 20:53:20 -0700 | [diff] [blame] | 229 | |
Davide Pesavento | 292e5e1 | 2015-03-13 02:08:33 +0100 | [diff] [blame] | 230 | face->onFail.connectSingleShot([this, localEndpoint] (const std::string& reason) { |
| 231 | m_multicastFaces.erase(localEndpoint); |
| 232 | }); |
| 233 | m_multicastFaces[localEndpoint] = face; |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 234 | |
Davide Pesavento | 292e5e1 | 2015-03-13 02:08:33 +0100 | [diff] [blame] | 235 | return face; |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 236 | } |
| 237 | |
| 238 | shared_ptr<MulticastUdpFace> |
| 239 | UdpFactory::createMulticastFace(const std::string& localIp, |
| 240 | const std::string& multicastIp, |
Giulio Grassi | 6d7176d | 2014-04-16 16:08:48 +0200 | [diff] [blame] | 241 | const std::string& multicastPort, |
Davide Pesavento | 292e5e1 | 2015-03-13 02:08:33 +0100 | [diff] [blame] | 242 | const std::string& networkInterfaceName/* = ""*/) |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 243 | { |
Davide Pesavento | 292e5e1 | 2015-03-13 02:08:33 +0100 | [diff] [blame] | 244 | udp::Endpoint localEndpoint(ip::address::from_string(localIp), |
Chengyu Fan | 4381fb6 | 2015-01-14 11:37:04 -0700 | [diff] [blame] | 245 | boost::lexical_cast<uint16_t>(multicastPort)); |
Davide Pesavento | 292e5e1 | 2015-03-13 02:08:33 +0100 | [diff] [blame] | 246 | udp::Endpoint multicastEndpoint(ip::address::from_string(multicastIp), |
Chengyu Fan | 4381fb6 | 2015-01-14 11:37:04 -0700 | [diff] [blame] | 247 | boost::lexical_cast<uint16_t>(multicastPort)); |
Chengyu Fan | 4381fb6 | 2015-01-14 11:37:04 -0700 | [diff] [blame] | 248 | return createMulticastFace(localEndpoint, multicastEndpoint, networkInterfaceName); |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 249 | } |
| 250 | |
| 251 | void |
| 252 | UdpFactory::createFace(const FaceUri& uri, |
| 253 | const FaceCreatedCallback& onCreated, |
| 254 | const FaceConnectFailedCallback& onConnectFailed) |
| 255 | { |
Chengyu Fan | 4381fb6 | 2015-01-14 11:37:04 -0700 | [diff] [blame] | 256 | BOOST_ASSERT(uri.isCanonical()); |
Davide Pesavento | 292e5e1 | 2015-03-13 02:08:33 +0100 | [diff] [blame] | 257 | |
Chengyu Fan | 4381fb6 | 2015-01-14 11:37:04 -0700 | [diff] [blame] | 258 | boost::asio::ip::address ipAddress = boost::asio::ip::address::from_string(uri.getHost()); |
| 259 | udp::Endpoint endpoint(ipAddress, boost::lexical_cast<uint16_t>(uri.getPort())); |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 260 | |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 261 | if (endpoint.address().is_multicast()) { |
| 262 | onConnectFailed("The provided address is multicast. Please use createMulticastFace method"); |
| 263 | return; |
| 264 | } |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 265 | |
Davide Pesavento | 292e5e1 | 2015-03-13 02:08:33 +0100 | [diff] [blame] | 266 | if (m_prohibitedEndpoints.find(endpoint) != m_prohibitedEndpoints.end()) { |
| 267 | onConnectFailed("Requested endpoint is prohibited " |
| 268 | "(reserved by this NFD or disallowed by face management protocol)"); |
| 269 | return; |
| 270 | } |
Steve DiBenedetto | ca53ac6 | 2014-03-27 19:58:40 -0600 | [diff] [blame] | 271 | |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 272 | // very simple logic for now |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 273 | for (ChannelMap::iterator channel = m_channels.begin(); |
| 274 | channel != m_channels.end(); |
| 275 | ++channel) |
| 276 | { |
| 277 | if ((channel->first.address().is_v4() && endpoint.address().is_v4()) || |
| 278 | (channel->first.address().is_v6() && endpoint.address().is_v6())) |
| 279 | { |
Steve DiBenedetto | ca53ac6 | 2014-03-27 19:58:40 -0600 | [diff] [blame] | 280 | channel->second->connect(endpoint, onCreated, onConnectFailed); |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 281 | return; |
| 282 | } |
| 283 | } |
Davide Pesavento | 292e5e1 | 2015-03-13 02:08:33 +0100 | [diff] [blame] | 284 | |
Alexander Afanasyev | f698028 | 2014-05-13 18:28:40 -0700 | [diff] [blame] | 285 | onConnectFailed("No channels available to connect to " + |
| 286 | boost::lexical_cast<std::string>(endpoint)); |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 287 | } |
| 288 | |
| 289 | shared_ptr<UdpChannel> |
| 290 | UdpFactory::findChannel(const udp::Endpoint& localEndpoint) |
| 291 | { |
| 292 | ChannelMap::iterator i = m_channels.find(localEndpoint); |
| 293 | if (i != m_channels.end()) |
| 294 | return i->second; |
| 295 | else |
| 296 | return shared_ptr<UdpChannel>(); |
| 297 | } |
| 298 | |
| 299 | shared_ptr<MulticastUdpFace> |
| 300 | UdpFactory::findMulticastFace(const udp::Endpoint& localEndpoint) |
| 301 | { |
| 302 | MulticastFaceMap::iterator i = m_multicastFaces.find(localEndpoint); |
| 303 | if (i != m_multicastFaces.end()) |
| 304 | return i->second; |
| 305 | else |
| 306 | return shared_ptr<MulticastUdpFace>(); |
| 307 | } |
| 308 | |
Davide Pesavento | 292e5e1 | 2015-03-13 02:08:33 +0100 | [diff] [blame] | 309 | std::list<shared_ptr<const Channel>> |
Steve DiBenedetto | ef04f27 | 2014-06-04 14:28:31 -0600 | [diff] [blame] | 310 | UdpFactory::getChannels() const |
| 311 | { |
Davide Pesavento | 292e5e1 | 2015-03-13 02:08:33 +0100 | [diff] [blame] | 312 | std::list<shared_ptr<const Channel>> channels; |
Steve DiBenedetto | ef04f27 | 2014-06-04 14:28:31 -0600 | [diff] [blame] | 313 | for (ChannelMap::const_iterator i = m_channels.begin(); i != m_channels.end(); ++i) |
| 314 | { |
| 315 | channels.push_back(i->second); |
| 316 | } |
| 317 | |
| 318 | return channels; |
| 319 | } |
| 320 | |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 321 | } // namespace nfd |