20 #ifndef SIMPLE_NET_DEVICE_H    21 #define SIMPLE_NET_DEVICE_H    26 #include "ns3/traced-callback.h"    27 #include "ns3/net-device.h"    28 #include "ns3/data-rate.h"    29 #include "ns3/event-id.h"    35 template <
typename Item> 
class Queue;
   111   virtual void SetIfIndex (
const uint32_t index);
   116   virtual bool SetMtu (
const uint16_t mtu);
   117   virtual uint16_t 
GetMtu (
void) 
const;
 virtual bool Send(Ptr< Packet > packet, const Address &dest, uint16_t protocolNumber)
void FinishTransmission(Ptr< Packet > packet)
The FinishTransmission method is used internally to finish the process of sending a packet out on the...
EventId FinishTransmissionEvent
the Tx Complete event 
Ptr< Node > m_node
Node this netDevice is associated to. 
TracedCallback m_linkChangeCallbacks
List of callbacks to fire if the link changes state (up or down). 
Forward calls to a chain of Callback. 
void Receive(Ptr< Packet > packet, uint16_t protocol, Mac48Address to, Mac48Address from)
Receive a packet from a connected SimpleChannel. 
virtual void SetIfIndex(const uint32_t index)
virtual bool IsLinkUp(void) const
bool m_pointToPointMode
Flag indicating whether or not the NetDevice is a Point to Point model. 
a polymophic address class 
bool m_linkUp
Flag indicating whether or not the link is up. 
Class for representing data rates. 
virtual void SetNode(Ptr< Node > node)
void StartTransmission(void)
The StartTransmission method is used internally to start the process of sending a packet out on the c...
virtual bool IsMulticast(void) const
virtual bool SupportsSendFrom(void) const
virtual void SetPromiscReceiveCallback(PromiscReceiveCallback cb)
virtual bool SetMtu(const uint16_t mtu)
virtual bool NeedsArp(void) const
This device assumes 48-bit mac addressing; there is also the possibility to add an ErrorModel if you ...
Mac48Address m_address
MAC address. 
virtual bool IsBridge(void) const
Return true if the net device is acting as a bridge. 
virtual Address GetAddress(void) const
virtual Address GetMulticast(Ipv4Address multicastGroup) const
Make and return a MAC multicast address using the provided multicast group. 
Ptr< Queue< Packet > > m_queue
The Queue for outgoing packets. 
Every class exported by the ns3 library is enclosed in the ns3 namespace. 
virtual void SetReceiveCallback(NetDevice::ReceiveCallback cb)
void SetReceiveErrorModel(Ptr< ErrorModel > em)
Attach a receive ErrorModel to the SimpleNetDevice. 
NetDevice::PromiscReceiveCallback m_promiscCallback
Promiscuous receive callback. 
virtual Ptr< Node > GetNode(void) const
Describes an IPv6 address. 
Ipv4 addresses are stored in host order in this class. 
TracedCallback< Ptr< const Packet > > m_phyRxDropTrace
The trace source fired when the phy layer drops a packet it has received due to the error model being...
An identifier for simulation events. 
Network layer to device interface. 
virtual void AddLinkChangeCallback(Callback< void > callback)
void SetQueue(Ptr< Queue< Packet > > queue)
Attach a queue to the SimpleNetDevice. 
virtual void SetAddress(Address address)
Set the address of this interface. 
Ptr< ErrorModel > m_receiveErrorModel
Receive error model. 
virtual void DoDispose(void)
Destructor implementation. 
virtual bool SendFrom(Ptr< Packet > packet, const Address &source, const Address &dest, uint16_t protocolNumber)
virtual uint16_t GetMtu(void) const
NetDevice::ReceiveCallback m_rxCallback
Receive callback. 
virtual Address GetBroadcast(void) const
Ptr< SimpleChannel > m_channel
the channel the device is connected to 
virtual uint32_t GetIfIndex(void) const
virtual Ptr< Channel > GetChannel(void) const
void SetChannel(Ptr< SimpleChannel > channel)
Attach a channel to this net device. 
Ptr< Queue< Packet > > GetQueue(void) const
Get a copy of the attached Queue. 
DataRate m_bps
The device nominal Data rate. 
virtual bool IsBroadcast(void) const
a unique identifier for an interface. 
static TypeId GetTypeId(void)
Get the type ID. 
virtual bool IsPointToPoint(void) const
Return true if the net device is on a point-to-point link. 
uint32_t m_ifIndex
Interface index.