22 #include "ns3/simulator.h" 23 #include "ns3/mac48-address.h" 24 #include "ns3/llc-snap-header.h" 25 #include "ns3/error-model.h" 27 #include "ns3/channel.h" 28 #include "ns3/trace-source-accessor.h" 29 #include "ns3/uinteger.h" 43 .SetGroupName (
"VirtualNetDevice")
45 .AddAttribute (
"Mtu",
"The MAC-level Maximum Transmission Unit",
49 MakeUintegerChecker<uint16_t> ())
50 .AddTraceSource (
"MacTx",
51 "Trace source indicating a packet has arrived " 52 "for transmission by this device",
54 "ns3::Packet::TracedCallback")
55 .AddTraceSource (
"MacPromiscRx",
56 "A packet has been received by this device, " 57 "has been passed up from the physical layer " 58 "and is being forwarded up the local protocol stack. " 59 "This is a promiscuous trace,",
61 "ns3::Packet::TracedCallback")
62 .AddTraceSource (
"MacRx",
63 "A packet has been received by this device, " 64 "has been passed up from the physical layer " 65 "and is being forwarded up the local protocol stack. " 66 "This is a non-promiscuous trace,",
68 "ns3::Packet::TracedCallback")
72 .AddTraceSource (
"Sniffer",
73 "Trace source simulating a non-promiscuous " 74 "packet sniffer attached to the device",
76 "ns3::Packet::TracedCallback")
77 .AddTraceSource (
"PromiscSniffer",
78 "Trace source simulating a promiscuous " 79 "packet sniffer attached to the device",
81 "ns3::Packet::TracedCallback")
269 if (
m_sendCb (packet, source, dest, protocolNumber))
void SetNeedsArp(bool needsArp)
Configure whether the virtual device needs ARP.
Packet addressed to someone else.
#define NS_OBJECT_ENSURE_REGISTERED(type)
Register an Object subclass with the TypeId system.
virtual bool IsPointToPoint(void) const
Return true if the net device is on a point-to-point link.
virtual void DoDispose(void)
Destructor implementation.
#define NS_ASSERT(condition)
At runtime, in debugging builds, if this condition is not true, the program prints the source file...
#define NS_LOG_COMPONENT_DEFINE(name)
Define a Log component with a specific name.
bool SetMtu(const uint16_t mtu)
Configure the reported MTU for the virtual device.
virtual Address GetBroadcast(void) const
bool Receive(Ptr< Packet > packet, uint16_t protocol, const Address &source, const Address &destination, PacketType packetType)
virtual void DoDispose(void)
Destructor implementation.
#define NS_LOG_FUNCTION_NOARGS()
Output the name of the function.
virtual Ptr< Channel > GetChannel(void) const
a polymophic address class
TracedCallback< Ptr< const Packet > > m_macPromiscRxTrace
Ptr< const TraceSourceAccessor > MakeTraceSourceAccessor(T a)
Create a TraceSourceAccessor which will control access to the underlying trace source.
virtual bool IsMulticast(void) const
virtual void SetPromiscReceiveCallback(NetDevice::PromiscReceiveCallback cb)
TracedCallback< Ptr< const Packet > > m_snifferTrace
virtual bool SupportsSendFrom() const
virtual bool IsBridge(void) const
Return true if the net device is acting as a bridge.
virtual void SetReceiveCallback(NetDevice::ReceiveCallback cb)
virtual Ptr< Node > GetNode(void) const
Hold an unsigned integer type.
virtual bool IsLinkUp(void) const
virtual void SetAddress(Address address)
Set the address of this interface.
virtual void SetIfIndex(const uint32_t index)
virtual uint16_t GetMtu(void) const
void SetIsPointToPoint(bool isPointToPoint)
Configure whether the virtual device is point-to-point.
virtual bool IsBroadcast(void) const
void SetSupportsSendFrom(bool supportsSendFrom)
Configure whether the virtual device supports SendFrom.
virtual void SetNode(Ptr< Node > node)
virtual bool Send(Ptr< Packet > packet, const Address &dest, uint16_t protocolNumber)
Every class exported by the ns3 library is enclosed in the ns3 namespace.
virtual Address GetMulticast(Ipv4Address multicastGroup) const
Make and return a MAC multicast address using the provided multicast group.
TracedCallback< Ptr< const Packet > > m_promiscSnifferTrace
PromiscReceiveCallback m_promiscRxCallback
TracedCallback< Ptr< const Packet > > m_macRxTrace
virtual void AddLinkChangeCallback(Callback< void > callback)
TracedCallback< Ptr< const Packet > > m_macTxTrace
virtual Address GetAddress(void) const
virtual bool SendFrom(Ptr< Packet > packet, const Address &source, const Address &dest, uint16_t protocolNumber)
virtual bool NeedsArp(void) const
Describes an IPv6 address.
Ipv4 addresses are stored in host order in this class.
Network layer to device interface.
ReceiveCallback m_rxCallback
virtual ~VirtualNetDevice()
static TypeId GetTypeId(void)
PacketType
Packet types are used as they are in Linux.
void SetSendCallback(SendCallback transmitCb)
Set the user callback to be called when a L2 packet is to be transmitted.
bool IsNull(void) const
Check for null implementation.
Ptr< const AttributeAccessor > MakeUintegerAccessor(T1 a1)
Create an AttributeAccessor for a class data member, or a lone class get functor or set method...
a unique identifier for an interface.
TypeId SetParent(TypeId tid)
Set the parent TypeId.
virtual uint32_t GetIfIndex(void) const