/usr/include/ns3.26/ns3/mesh-point-device.h is in libns3-dev 3.26+dfsg-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
/*
* Copyright (c) 2008,2009 IITP RAS
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation;
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* Authors: Kirill Andreev <andreev@iitp.ru>
* Pavel Boyko <boyko@iitp.ru>
*/
#ifndef L2ROUTING_NET_DEVICE_H
#define L2ROUTING_NET_DEVICE_H
#include "ns3/net-device.h"
#include "ns3/mac48-address.h"
#include "ns3/bridge-channel.h"
#include "ns3/mesh-l2-routing-protocol.h"
namespace ns3 {
class Node;
/**
* \ingroup mesh
*
* \brief Virtual net device modeling mesh point.
*
* Mesh point is a virtual net device which is responsible for
* - Aggregating and coordinating 1..* real devices -- mesh interfaces, see MeshInterfaceDevice class.
* - Hosting all mesh-related level 2 protocols.
*
* One of hosted L2 protocols must inplement L2RoutingProtocol interface and is used for packets forwarding.
*
* From the level 3 point of view MeshPointDevice is similar to BridgeNetDevice, but the packets,
* which going through may be changed (because L2 protocols may require their own headers or tags).
*
* Attributes: \todo
*/
class MeshPointDevice : public NetDevice
{
public:
/// Object type ID for NS3 object system
static TypeId GetTypeId ();
/// C-tor create empty (without interfaces and protocols) mesh point
MeshPointDevice ();
/// D-tor
virtual ~MeshPointDevice ();
///\name Interfaces
//\{
/**
* \brief Attach new interface to the station. Interface must support 48-bit MAC address and SendFrom method.
*
* \attention Only MeshPointDevice can have IP address, but not individual interfaces.
*/
void AddInterface (Ptr<NetDevice> port);
/**
* \return number of interfaces
*/
uint32_t GetNInterfaces () const;
/**
* \return interface device by its index (aka ID)
* \param id is interface id, 0 <= id < GetNInterfaces
*/
Ptr<NetDevice> GetInterface (uint32_t id) const;
/**
* \return vector of interfaces
*/
std::vector<Ptr<NetDevice> > GetInterfaces () const;
//\}
///\name Protocols
//\{
/// Register routing protocol to be used. Protocol must be already installed on this mesh point.
void SetRoutingProtocol (Ptr<MeshL2RoutingProtocol> protocol);
/// Access current routing protocol
Ptr<MeshL2RoutingProtocol> GetRoutingProtocol () const;
//\}
// Inherited from NetDevice
virtual void SetIfIndex (const uint32_t index);
virtual uint32_t GetIfIndex () const;
virtual Ptr<Channel> GetChannel () const;
virtual Address GetAddress () const;
virtual void SetAddress (Address a);
virtual bool SetMtu (const uint16_t mtu);
virtual uint16_t GetMtu () const;
virtual bool IsLinkUp () const;
virtual void AddLinkChangeCallback (Callback<void> callback);
virtual bool IsBroadcast () const;
virtual Address GetBroadcast () const;
virtual bool IsMulticast () const;
virtual Address GetMulticast (Ipv4Address multicastGroup) const;
virtual bool IsPointToPoint () const;
virtual bool IsBridge () const;
virtual bool Send (Ptr<Packet> packet, const Address& dest, uint16_t protocolNumber);
virtual bool SendFrom (Ptr<Packet> packet, const Address& source, const Address& dest, uint16_t protocolNumber);
virtual Ptr<Node> GetNode () const;
virtual void SetNode (Ptr<Node> node);
virtual bool NeedsArp () const;
virtual void SetReceiveCallback (NetDevice::ReceiveCallback cb);
virtual void SetPromiscReceiveCallback (NetDevice::PromiscReceiveCallback cb);
virtual bool SupportsSendFrom () const;
virtual Address GetMulticast (Ipv6Address addr) const;
virtual void DoDispose ();
///\name Statistics
//\{
/// Print statistics counters
void Report (std::ostream & os) const;
/// Reset statistics counters
void ResetStats ();
//\}
private:
/// Receive packet from interface
void ReceiveFromDevice (Ptr<NetDevice> device, Ptr<const Packet> packet, uint16_t protocol,
Address const &source, Address const &destination, PacketType packetType);
/// Forward packet down to interfaces
void Forward (Ptr<NetDevice> incomingPort, Ptr<const Packet> packet,
uint16_t protocol, const Mac48Address src,
const Mac48Address dst);
/**
* \brief Response callback for L2 routing protocol. This will be executed when routing information is ready.
*
* \param success True is route found.
* \param packet Packet to send
* \param src Source MAC address
* \param dst Destination MAC address
* \param protocol Protocol ID
* \param iface Interface to use (ID) for send (decided by routing protocol). All interfaces will be used if outIface = 0xffffffff
* \todo diagnose routing errors
*/
void
DoSend (bool success, Ptr<Packet> packet, Mac48Address src, Mac48Address dst, uint16_t protocol,
uint32_t iface);
private:
/// Receive action
NetDevice::ReceiveCallback m_rxCallback;
/// Promisc receive action
NetDevice::PromiscReceiveCallback m_promiscRxCallback;
/// Mesh point MAC address, supposed to be the address of the first added interface
Mac48Address m_address;
/// Parent node
Ptr<Node> m_node;
/// List of interfaces
std::vector< Ptr<NetDevice> > m_ifaces;
/// If index
uint32_t m_ifIndex;
/// MTU in bytes
uint16_t m_mtu;
/// Virtual channel for upper layers
Ptr<BridgeChannel> m_channel;
/// Current routing protocol, used mainly by GetRoutingProtocol
Ptr<MeshL2RoutingProtocol> m_routingProtocol;
///\name Device statistics counters
///\{
struct Statistics
{
uint32_t unicastData;
uint32_t unicastDataBytes;
uint32_t broadcastData;
uint32_t broadcastDataBytes;
Statistics ();
};
/// Counters
Statistics m_rxStats, m_txStats, m_fwdStats;
///\}
};
} // namespace ns3
#endif
|