NS-3 based Named Data Networking (NDN) simulator
ndnSIM 2.5: NDN, CCN, CCNx, content centric networks
API Documentation
multicast-udp-transport.hpp
Go to the documentation of this file.
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2 /*
3  * Copyright (c) 2014-2018, 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 #ifndef NFD_DAEMON_FACE_MULTICAST_UDP_TRANSPORT_HPP
27 #define NFD_DAEMON_FACE_MULTICAST_UDP_TRANSPORT_HPP
28 
29 #include "datagram-transport.hpp"
30 
31 #include <ndn-cxx/net/network-interface.hpp>
32 
33 namespace nfd {
34 namespace face {
35 
36 // Explicit specialization of makeEndpointId for the UDP multicast case.
37 // Note that this "shall be declared before the first use of the specialization
38 // that would cause an implicit instantiation to take place, in every translation
39 // unit in which such a use occurs".
40 template<>
43 
47 class MulticastUdpTransport final : public DatagramTransport<boost::asio::ip::udp, Multicast>
48 {
49 public:
50  class Error : public std::runtime_error
51  {
52  public:
53  explicit
54  Error(const std::string& what)
55  : std::runtime_error(what)
56  {
57  }
58  };
59 
67  MulticastUdpTransport(const protocol::endpoint& multicastGroup,
68  protocol::socket&& recvSocket,
69  protocol::socket&& sendSocket,
70  ndn::nfd::LinkType linkType);
71 
72  ssize_t
73  getSendQueueLength() final;
74 
75  static void
76  openRxSocket(protocol::socket& sock,
77  const protocol::endpoint& multicastGroup,
78  const boost::asio::ip::address& localAddress,
79  const shared_ptr<const ndn::net::NetworkInterface>& netif = nullptr);
80 
81  static void
82  openTxSocket(protocol::socket& sock,
83  const protocol::endpoint& localEndpoint,
84  const shared_ptr<const ndn::net::NetworkInterface>& netif = nullptr,
85  bool enableLoopback = false);
86 
87 private:
88  void
89  doSend(Transport::Packet&& packet) final;
90 
91  void
92  doClose() final;
93 
94 private:
95  protocol::endpoint m_multicastGroup;
96  protocol::socket m_sendSocket;
97 };
98 
99 } // namespace face
100 } // namespace nfd
101 
102 #endif // NFD_DAEMON_FACE_MULTICAST_UDP_TRANSPORT_HPP
Copyright (c) 2011-2015 Regents of the University of California.
static void openRxSocket(protocol::socket &sock, const protocol::endpoint &multicastGroup, const boost::asio::ip::address &localAddress, const shared_ptr< const ndn::net::NetworkInterface > &netif=nullptr)
STL namespace.
Implements Transport for datagram-based protocols.
static EndpointId makeEndpointId(const typename protocol::endpoint &ep)
MulticastUdpTransport(const protocol::endpoint &multicastGroup, protocol::socket &&recvSocket, protocol::socket &&sendSocket, ndn::nfd::LinkType linkType)
Creates a UDP-based transport for multicast communication.
Copyright (c) 2011-2015 Regents of the University of California.
Definition: ndn-common.hpp:40
static void openTxSocket(protocol::socket &sock, const protocol::endpoint &localEndpoint, const shared_ptr< const ndn::net::NetworkInterface > &netif=nullptr, bool enableLoopback=false)
A Transport that communicates on a UDP multicast group.
uint64_t EndpointId
identifies an endpoint on the link
Definition: transport.hpp:118
the lower part of a Face
Definition: transport.hpp:113