blob: a1f376bcdc7f7ac0156b3e918a01bd3c03349bbd [file] [log] [blame]
Yukai Tu0a49d342015-09-13 12:54:22 +08001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
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.
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,
38 protocol::socket&& sendSocket)
39 : DatagramTransport(std::move(recvSocket))
40 , m_multicastGroup(multicastGroup)
41 , m_sendSocket(std::move(sendSocket))
42{
43 this->setLocalUri(FaceUri(localEndpoint));
44 this->setRemoteUri(FaceUri(multicastGroup));
Junxiao Shi13546112015-10-14 19:33:07 -070045 this->setScope(ndn::nfd::FACE_SCOPE_NON_LOCAL);
Yukai Tu0a49d342015-09-13 12:54:22 +080046 this->setPersistency(ndn::nfd::FACE_PERSISTENCY_PERMANENT);
47 this->setLinkType(ndn::nfd::LINK_TYPE_MULTI_ACCESS);
Junxiao Shi13546112015-10-14 19:33:07 -070048 this->setMtu(udp::computeMtu(localEndpoint));
Yukai Tu0a49d342015-09-13 12:54:22 +080049
50 NFD_LOG_FACE_INFO("Creating transport");
51}
52
53void
54MulticastUdpTransport::doSend(Transport::Packet&& packet)
55{
56 NFD_LOG_FACE_TRACE(__func__);
57
58 m_sendSocket.async_send_to(boost::asio::buffer(packet.packet), m_multicastGroup,
59 bind(&MulticastUdpTransport::handleSend, this,
60 boost::asio::placeholders::error,
61 boost::asio::placeholders::bytes_transferred,
62 packet.packet));
63}
64
65void
66MulticastUdpTransport::doClose()
67{
68 if (m_sendSocket.is_open()) {
69 NFD_LOG_FACE_TRACE("Closing sending socket");
70
71 // Cancel all outstanding operations and close the socket.
72 // Use the non-throwing variants and ignore errors, if any.
73 boost::system::error_code error;
74 m_sendSocket.cancel(error);
75 m_sendSocket.close(error);
76 }
77
78 DatagramTransport::doClose();
79}
80
81} // namespace face
82} // namespace nfd