blob: 7b3fca36a090e0efce490c8e27e5d4967f374d08 [file] [log] [blame]
Yukai Tu0a49d342015-09-13 12:54:22 +08001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Yanbiao Li32dab972016-11-27 12:26:09 +08003 * Copyright (c) 2014-2017, Regents of the University of California,
Yukai Tu0a49d342015-09-13 12:54:22 +08004 * 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.
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/>.
24 */
25
26#include "multicast-udp-transport.hpp"
Junxiao Shi13546112015-10-14 19:33:07 -070027#include "udp-protocol.hpp"
Yukai Tu0a49d342015-09-13 12:54:22 +080028
29namespace nfd {
30namespace face {
31
32NFD_LOG_INCLASS_2TEMPLATE_SPECIALIZATION_DEFINE(DatagramTransport, MulticastUdpTransport::protocol,
33 Multicast, "MulticastUdpTransport");
34
35MulticastUdpTransport::MulticastUdpTransport(const protocol::endpoint& localEndpoint,
36 const protocol::endpoint& multicastGroup,
37 protocol::socket&& recvSocket,
Teng Liangfe4fce32017-03-29 04:49:38 +000038 protocol::socket&& sendSocket,
39 ndn::nfd::LinkType linkType)
Yukai Tu0a49d342015-09-13 12:54:22 +080040 : DatagramTransport(std::move(recvSocket))
41 , m_multicastGroup(multicastGroup)
42 , m_sendSocket(std::move(sendSocket))
43{
44 this->setLocalUri(FaceUri(localEndpoint));
45 this->setRemoteUri(FaceUri(multicastGroup));
Junxiao Shi13546112015-10-14 19:33:07 -070046 this->setScope(ndn::nfd::FACE_SCOPE_NON_LOCAL);
Yukai Tu0a49d342015-09-13 12:54:22 +080047 this->setPersistency(ndn::nfd::FACE_PERSISTENCY_PERMANENT);
Teng Liangfe4fce32017-03-29 04:49:38 +000048 this->setLinkType(linkType);
Junxiao Shi13546112015-10-14 19:33:07 -070049 this->setMtu(udp::computeMtu(localEndpoint));
Yukai Tu0a49d342015-09-13 12:54:22 +080050
51 NFD_LOG_FACE_INFO("Creating transport");
52}
53
54void
Yukai Tu0a49d342015-09-13 12:54:22 +080055MulticastUdpTransport::doSend(Transport::Packet&& packet)
56{
57 NFD_LOG_FACE_TRACE(__func__);
58
59 m_sendSocket.async_send_to(boost::asio::buffer(packet.packet), m_multicastGroup,
60 bind(&MulticastUdpTransport::handleSend, this,
61 boost::asio::placeholders::error,
62 boost::asio::placeholders::bytes_transferred,
63 packet.packet));
64}
65
66void
67MulticastUdpTransport::doClose()
68{
69 if (m_sendSocket.is_open()) {
70 NFD_LOG_FACE_TRACE("Closing sending socket");
71
72 // Cancel all outstanding operations and close the socket.
73 // Use the non-throwing variants and ignore errors, if any.
74 boost::system::error_code error;
75 m_sendSocket.cancel(error);
76 m_sendSocket.close(error);
77 }
78
79 DatagramTransport::doClose();
80}
81
Davide Pesaventoeee7b972015-11-18 21:34:46 +010082template<>
83Transport::EndpointId
84DatagramTransport<boost::asio::ip::udp, Multicast>::makeEndpointId(const protocol::endpoint& ep)
85{
86 // IPv6 multicast is not supported
87 BOOST_ASSERT(ep.address().is_v4());
88
89 return (static_cast<uint64_t>(ep.port()) << 32) |
90 static_cast<uint64_t>(ep.address().to_v4().to_ulong());
91}
92
Yukai Tu0a49d342015-09-13 12:54:22 +080093} // namespace face
94} // namespace nfd