20 #include "ns3/queue.h"
21 #include "ns3/simulator.h"
22 #include "ns3/mac48-address.h"
23 #include "ns3/llc-snap-header.h"
24 #include "ns3/error-model.h"
25 #include "ns3/trace-source-accessor.h"
26 #include "ns3/uinteger.h"
27 #include "ns3/pointer.h"
42 static TypeId tid =
TypeId (
"ns3::PointToPointNetDevice")
44 .AddConstructor<PointToPointNetDevice> ()
45 .AddAttribute (
"Mtu",
"The MAC-level Maximum Transmission Unit",
49 MakeUintegerChecker<uint16_t> ())
50 .AddAttribute (
"Address",
51 "The MAC address of this device.",
54 MakeMac48AddressChecker ())
55 .AddAttribute (
"DataRate",
56 "The default data rate for point to point links",
59 MakeDataRateChecker ())
60 .AddAttribute (
"ReceiveErrorModel",
61 "The receiver error model used to simulate packet loss",
64 MakePointerChecker<ErrorModel> ())
65 .AddAttribute (
"InterframeGap",
66 "The time to wait between packet (frame) transmissions",
75 .AddAttribute (
"TxQueue",
76 "A queue to use as the transmit queue in the device.",
79 MakePointerChecker<Queue> ())
85 .AddTraceSource (
"MacTx",
86 "Trace source indicating a packet has arrived for transmission by this device",
88 .AddTraceSource (
"MacTxDrop",
89 "Trace source indicating a packet has been dropped by the device before transmission",
91 .AddTraceSource (
"MacPromiscRx",
92 "A packet has been received by this device, has been passed up from the physical layer "
93 "and is being forwarded up the local protocol stack. This is a promiscuous trace,",
95 .AddTraceSource (
"MacRx",
96 "A packet has been received by this device, has been passed up from the physical layer "
97 "and is being forwarded up the local protocol stack. This is a non-promiscuous trace,",
101 .AddTraceSource (
"MacRxDrop",
102 "Trace source indicating a packet was dropped before being forwarded up the stack",
109 .AddTraceSource (
"PhyTxBegin",
110 "Trace source indicating a packet has begun transmitting over the channel",
112 .AddTraceSource (
"PhyTxEnd",
113 "Trace source indicating a packet has been completely transmitted over the channel",
115 .AddTraceSource (
"PhyTxDrop",
116 "Trace source indicating a packet has been dropped by the device during transmission",
120 .AddTraceSource (
"PhyRxBegin",
121 "Trace source indicating a packet has begun being received by the device",
124 .AddTraceSource (
"PhyRxEnd",
125 "Trace source indicating a packet has been completely received by the device",
127 .AddTraceSource (
"PhyRxDrop",
128 "Trace source indicating a packet has been dropped by the device during reception",
136 .AddTraceSource (
"Sniffer",
137 "Trace source simulating a non-promiscuous packet sniffer attached to the device",
139 .AddTraceSource (
"PromiscSniffer",
140 "Trace source simulating a promiscuous packet sniffer attached to the device",
149 m_txMachineState (READY),
228 bool result =
m_channel->TransmitStart (p,
this, txTime);
308 uint16_t protocol = 0;
466 uint16_t protocolNumber)
500 if (
m_queue->Enqueue (packet) ==
true)
516 return m_queue->Enqueue (packet);
524 uint16_t protocolNumber)
575 for (uint32_t i = 0; i <
m_channel->GetNDevices (); ++i)
580 return tmp->GetAddress ();
608 case 0x0021:
return 0x0800;
609 case 0x0057:
return 0x86DD;
610 default:
NS_ASSERT_MSG (
false,
"PPP Protocol number not defined!");
620 case 0x0800:
return 0x0021;
621 case 0x86DD:
return 0x0057;
622 default:
NS_ASSERT_MSG (
false,
"PPP Protocol number not defined!");
uint32_t RemoveHeader(Header &header)
Deserialize and remove the header from the internal buffer.
void SetReceiveErrorModel(Ptr< ErrorModel > em)
Attach a receive ErrorModel to the PointToPointNetDevice.
PointToPointNetDevice()
Construct a PointToPointNetDevice.
keep track of time values and allow control of global simulation resolution
NetDevice::ReceiveCallback m_rxCallback
virtual bool IsLinkUp(void) const
#define NS_LOG_FUNCTION(parameters)
static TypeId GetTypeId(void)
Ptr< Queue > GetQueue(void) const
Get a copy of the attached Queue.
The transmitter is busy transmitting a packet.
TracedCallback< Ptr< const Packet > > m_phyTxDropTrace
The trace source fired when the phy layer drops a packet before it tries to transmit it...
uint32_t m_mtu
The Maximum Transmission Unit.
Address GetRemote(void) const
NS_LOG_COMPONENT_DEFINE("PointToPointNetDevice")
virtual bool SupportsSendFrom(void) const
virtual ~PointToPointNetDevice()
Destroy a PointToPointNetDevice.
static const uint16_t DEFAULT_MTU
TracedCallback< Ptr< const Packet > > m_phyRxEndTrace
The trace source fired when a packet ends the reception process from the medium.
TracedCallback< Ptr< const Packet > > m_phyRxDropTrace
The trace source fired when the phy layer drops a packet it has received.
uint64_t GetUid(void) const
A packet is allocated a new uid when it is created empty or with zero-filled payload.
bool IsNull(void) const
Check for null implementation.
#define NS_ASSERT(condition)
TracedCallback< Ptr< const Packet > > m_phyTxBeginTrace
The trace source fired when a packet begins the transmission process on the medium.
NS_OBJECT_ENSURE_REGISTERED(NullMessageSimulatorImpl)
Ptr< Packet > m_currentPkt
static uint16_t EtherToPpp(uint16_t protocol)
Ethernet to PPP protocol number mapping.
uint32_t GetSize(void) const
virtual void DoDispose(void)
This method is called by Object::Dispose or by the object's destructor, whichever comes first...
#define NS_LOG_FUNCTION_NOARGS()
Output the name of the function.
virtual Ptr< Node > GetNode(void) const
static EventId Schedule(Time const &time, MEM mem_ptr, OBJ obj)
Schedule an event to expire at the relative time "time" is reached.
TracedCallback< Ptr< const Packet > > m_macRxTrace
The trace source fired for packets successfully received by the device immediately before being forwa...
The transmitter is ready to begin transmission of a packet.
bool ProcessHeader(Ptr< Packet > p, uint16_t ¶m)
Removes, from a packet of data, all headers and trailers that relate to the protocol implemented by t...
a polymophic address class
virtual Address GetMulticast(Ipv4Address multicastGroup) const
Make and return a MAC multicast address using the provided multicast group.
static uint16_t PppToEther(uint16_t protocol)
PPP to Ethernet protocol number mapping.
Class for representing data rates.
virtual bool IsPointToPoint(void) const
Return true if the net device is on a point-to-point link.
double GetSeconds(void) const
double CalculateTxTime(uint32_t bytes) const
Calculate transmission time.
virtual void SetPromiscReceiveCallback(PromiscReceiveCallback cb)
virtual void SetAddress(Address address)
Set the address of this interface.
hold objects of type ns3::Time
Hold an unsigned integer type.
void TransmitComplete(void)
Stop Sending a Packet Down the Wire and Begin the Interframe Gap.
TracedCallback m_linkChangeCallbacks
TracedCallback< Ptr< const Packet > > m_snifferTrace
A trace source that emulates a non-promiscuous protocol sniffer connected to the device.
bool TransmitStart(Ptr< Packet > p)
Start Sending a Packet Down the Wire.
void SetInterframeGap(Time t)
Set the interframe gap used to separate packets.
NetDevice::PromiscReceiveCallback m_promiscCallback
#define NS_LOG_LOGIC(msg)
Time m_tInterframeGap
The interframe gap that the Net Device uses to throttle packet transmission.
virtual void AddLinkChangeCallback(Callback< void > callback)
static Mac48Address ConvertFrom(const Address &address)
virtual bool NeedsArp(void) const
virtual void SetReceiveCallback(NetDevice::ReceiveCallback cb)
virtual uint32_t GetIfIndex(void) const
virtual Ptr< Channel > GetChannel(void) const
Ptr< const TraceSourceAccessor > MakeTraceSourceAccessor(T a)
virtual Address GetAddress(void) const
virtual bool IsBridge(void) const
Return true if the net device is acting as a bridge.
void DoMpiReceive(Ptr< Packet > p)
DataRate m_bps
The data rate that the Net Device uses to simulate packet transmission timing.
Ptr< PointToPointChannel > m_channel
The PointToPointChannel to which this PointToPointNetDevice has been attached.
TracedCallback< Ptr< const Packet > > m_promiscSnifferTrace
A trace source that emulates a promiscuous mode protocol sniffer connected to the device...
Ptr< ErrorModel > m_receiveErrorModel
Error model for receive packet events.
#define NS_ASSERT_MSG(condition, message)
virtual bool SendFrom(Ptr< Packet > packet, const Address &source, const Address &dest, uint16_t protocolNumber)
virtual bool Send(Ptr< Packet > packet, const Address &dest, uint16_t protocolNumber)
Describes an IPv6 address.
Ipv4 addresses are stored in host order in this class.
TracedCallback< Ptr< const Packet > > m_macPromiscRxTrace
The trace source fired for packets successfully received by the device immediately before being forwa...
TracedCallback< Ptr< const Packet > > m_phyRxBeginTrace
The trace source fired when a packet begins the reception process from the medium – when the simulat...
void ConnectWithoutContext(const CallbackBase &callback)
TxMachineState m_txMachineState
The state of the Net Device transmit state machine.
TracedCallback< Ptr< const Packet > > m_macTxDropTrace
The trace source fired when packets coming into the "top" of the device at the L3/L2 transition are d...
Network layer to device interface.
virtual bool SetMtu(const uint16_t mtu)
virtual void SetIfIndex(const uint32_t index)
hold objects of type ns3::DataRate
hold objects of type ns3::Mac48Address
void SetDataRate(DataRate bps)
Set the Data Rate used for transmission of packets.
TracedCallback< Ptr< const Packet > > m_macRxDropTrace
The trace source fired for packets successfully received by the device but are dropped before being f...
void Receive(Ptr< Packet > p)
Receive a packet from a connected PointToPointChannel.
virtual bool IsBroadcast(void) const
bool Attach(Ptr< PointToPointChannel > ch)
Attach the device to a channel.
Ptr< Queue > m_queue
The Queue which this PointToPointNetDevice uses as a packet source.
virtual void DoDispose(void)
This method is called by Object::Dispose or by the object's destructor, whichever comes first...
Ptr< const AttributeChecker > MakeTimeChecker(const Time min, const Time max)
Helper to make a Time checker with bounded range.
virtual void SetNode(Ptr< Node > node)
void AddHeader(Ptr< Packet > p, uint16_t protocolNumber)
Adds the necessary headers and trailers to a packet of data in order to respect the protocol implemen...
virtual uint16_t GetMtu(void) const
virtual bool IsMulticast(void) const
a unique identifier for an interface.
TracedCallback< Ptr< const Packet > > m_macTxTrace
The trace source fired when packets come into the "top" of the device at the L3/L2 transition...
TypeId SetParent(TypeId tid)
virtual Address GetBroadcast(void) const
void AddHeader(const Header &header)
Add header to this packet.
void SetQueue(Ptr< Queue > queue)
Attach a queue to the PointToPointNetDevice.
TracedCallback< Ptr< const Packet > > m_phyTxEndTrace
The trace source fired when a packet ends the transmission process on the medium. ...