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-2020, 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
NFD_LOG_MEMBER_DECL_SPECIALIZED
((DatagramTransport<boost::asio::ip::udp, Multicast>));
37
38
// Explicit specialization of makeEndpointId for the UDP multicast case.
39
// Note that this "shall be declared before the first use of the specialization
40
// that would cause an implicit instantiation to take place, in every translation
41
// unit in which such a use occurs".
42
template
<>
43
EndpointId
44
DatagramTransport<boost::asio::ip::udp, Multicast>::makeEndpointId
(
const
protocol::endpoint& ep);
45
49
class
MulticastUdpTransport
final :
public
DatagramTransport
<boost::asio::ip::udp, Multicast>
50
{
51
public
:
52
class
Error
:
public
std::runtime_error
53
{
54
public
:
55
using
std::runtime_error::runtime_error;
56
};
57
65
MulticastUdpTransport
(
const
protocol::endpoint& multicastGroup,
66
protocol::socket
&& recvSocket,
67
protocol::socket
&& sendSocket,
68
ndn::nfd::LinkType
linkType);
69
70
ssize_t
71
getSendQueueLength
()
final
;
72
73
static
void
74
openRxSocket
(
protocol::socket
& sock,
75
const
protocol::endpoint& multicastGroup,
76
const
boost::asio::ip::address& localAddress,
77
const
shared_ptr<const ndn::net::NetworkInterface>& netif =
nullptr
);
78
79
static
void
80
openTxSocket
(
protocol::socket
& sock,
81
const
protocol::endpoint& localEndpoint,
82
const
shared_ptr<const ndn::net::NetworkInterface>& netif =
nullptr
,
83
bool
enableLoopback =
false
);
84
85
private
:
86
void
87
doSend(
const
Block
& packet)
final
;
88
89
void
90
doClose()
final
;
91
92
private
:
93
protocol::endpoint m_multicastGroup;
94
protocol::socket
m_sendSocket;
95
};
96
97
}
// namespace face
98
}
// namespace nfd
99
100
#endif // NFD_DAEMON_FACE_MULTICAST_UDP_TRANSPORT_HPP
network-interface.hpp
nfd::face::MulticastUdpTransport::Error
Definition:
multicast-udp-transport.hpp:52
nfd::face::DatagramTransport::makeEndpointId
static EndpointId makeEndpointId(const typename protocol::endpoint &ep)
Definition:
datagram-transport.hpp:262
ndn::nfd::LinkType
LinkType
Definition:
nfd-constants.hpp:57
nfd::face::MulticastUdpTransport::openRxSocket
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)
Definition:
multicast-udp-transport.cpp:134
nfd::face::MulticastUdpTransport::getSendQueueLength
ssize_t getSendQueueLength() final
Definition:
multicast-udp-transport.cpp:75
ndn::Block
Represents a TLV element of the NDN packet format.
Definition:
block.hpp:44
nfd::face::EndpointId
uint64_t EndpointId
Identifies a remote endpoint on the link.
Definition:
face-common.hpp:71
nfd::face::DatagramTransport
Implements Transport for datagram-based protocols.
Definition:
datagram-transport.hpp:46
nfd::face::MulticastUdpTransport::MulticastUdpTransport
MulticastUdpTransport(const protocol::endpoint &multicastGroup, protocol::socket &&recvSocket, protocol::socket &&sendSocket, ndn::nfd::LinkType linkType)
Creates a UDP-based transport for multicast communication.
Definition:
multicast-udp-transport.cpp:45
nfd
Copyright (c) 2011-2015 Regents of the University of California.
Definition:
ndn-common.hpp:39
nfd::face::MulticastUdpTransport::openTxSocket
static void openTxSocket(protocol::socket &sock, const protocol::endpoint &localEndpoint, const shared_ptr< const ndn::net::NetworkInterface > &netif=nullptr, bool enableLoopback=false)
Definition:
multicast-udp-transport.cpp:169
datagram-transport.hpp
nfd::face::MulticastUdpTransport
A Transport that communicates on a UDP multicast group.
Definition:
multicast-udp-transport.hpp:49
websocketpp::transport::asio::socket::error::socket
Catch-all error for socket component errors that don't fit in other categories.
Definition:
base.hpp:83
nfd::face::NFD_LOG_MEMBER_DECL_SPECIALIZED
NFD_LOG_MEMBER_DECL_SPECIALIZED((DatagramTransport< boost::asio::ip::udp, Multicast >))
ndnSIM
NFD
daemon
face
multicast-udp-transport.hpp
Generated on Fri May 6 2022 12:34:13 for ndnSIM by
1.8.13