20 #ifndef ARP_L3_PROTOCOL_H 21 #define ARP_L3_PROTOCOL_H 24 #include "ns3/ipv4-header.h" 25 #include "ns3/net-device.h" 26 #include "ns3/address.h" 28 #include "ns3/traced-callback.h" 29 #include "ns3/random-variable-stream.h" 38 class TrafficControlLayer;
void Receive(Ptr< NetDevice > device, Ptr< const Packet > p, uint16_t protocol, const Address &from, const Address &to, NetDevice::PacketType packetType)
Receive a packet.
void SendArpReply(Ptr< const ArpCache > cache, Ipv4Address myIp, Ipv4Address toIp, Address toMac)
Send an ARP reply to an host.
Forward calls to a chain of Callback.
std::list< Ptr< ArpCache > > CacheList
container of the ARP caches
Ptr< TrafficControlLayer > m_tc
The associated TrafficControlLayer.
ArpL3Protocol & operator=(const ArpL3Protocol &o)
Copy constructor.
Ptr< ArpCache > CreateCache(Ptr< NetDevice > device, Ptr< Ipv4Interface > interface)
Create an ARP cache for the device/interface.
TracedCallback< Ptr< const Packet > > m_dropTrace
trace for packets dropped by ARP
void SendArpRequest(Ptr< const ArpCache >cache, Ipv4Address to)
Send an ARP request to an host.
a polymophic address class
virtual void NotifyNewAggregate()
Notify all Objects aggregated to this one of a new Object being aggregated.
virtual void DoDispose(void)
Destructor implementation.
static const uint16_t PROT_NUMBER
ARP protocol number (0x0806)
Every class exported by the ns3 library is enclosed in the ns3 namespace.
Ptr< Node > m_node
node the ARP L3 protocol is associated with
int64_t AssignStreams(int64_t stream)
Assign a fixed random variable stream number to the random variables used by this model...
Ipv4 addresses are stored in host order in this class.
void SetNode(Ptr< Node > node)
Set the node the ARP L3 protocol is associated with.
Ptr< RandomVariableStream > m_requestJitter
jitter to de-sync ARP requests
An implementation of the ARP protocol.
A base class which provides memory management and object aggregation.
PacketType
Packet types are used as they are in Linux.
void SetTrafficControl(Ptr< TrafficControlLayer > tc)
Set the TrafficControlLayer.
CacheList m_cacheList
ARP cache container.
a unique identifier for an interface.
bool Lookup(Ptr< Packet > p, const Ipv4Header &ipHeader, Ipv4Address destination, Ptr< NetDevice > device, Ptr< ArpCache > cache, Address *hardwareDestination)
Perform an ARP lookup.
Ptr< ArpCache > FindCache(Ptr< NetDevice > device)
Finds the cache associated with a NetDevice.
static TypeId GetTypeId(void)
Get the type ID.