#include <virtual-net-device.h>
Public Types | |
typedef Callback< bool, Ptr < Packet >, const Address &, const Address &, uint16_t > | SendCallback |
Public Member Functions | |
void | SetSendCallback (SendCallback transmitCb) |
Set the user callback to be called when a L2 packet is to be transmitted. | |
void | SetNeedsArp (bool needsArp) |
Configure whether the virtual device needs ARP. | |
void | SetIsPointToPoint (bool isPointToPoint) |
Configure whether the virtual device is point-to-point. | |
void | SetSupportsSendFrom (bool supportsSendFrom) |
Configure whether the virtual device supports SendFrom. | |
bool | SetMtu (const uint16_t mtu) |
Configure the reported MTU for the virtual device. The default value is 65535. | |
bool | Receive (Ptr< Packet > packet, uint16_t protocol, const Address &source, const Address &destination, PacketType packetType) |
virtual void | SetIfIndex (const uint32_t index) |
virtual uint32_t | GetIfIndex (void) const |
virtual Ptr< Channel > | GetChannel (void) const |
virtual void | SetAddress (Address address) |
virtual Address | GetAddress (void) const |
virtual uint16_t | GetMtu (void) const |
virtual bool | IsLinkUp (void) const |
virtual void | SetLinkChangeCallback (Callback< void > callback) |
virtual bool | IsBroadcast (void) const |
virtual Address | GetBroadcast (void) const |
virtual bool | IsMulticast (void) const |
virtual Address | GetMulticast (Ipv4Address multicastGroup) const |
Make and return a MAC multicast address using the provided multicast group. | |
virtual Address | GetMulticast (Ipv6Address addr) const |
Get the MAC multicast address corresponding to the IPv6 address provided. | |
virtual bool | IsPointToPoint (void) const |
Return true if the net device is on a point-to-point link. | |
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 (void) const |
virtual void | SetNode (Ptr< Node > node) |
virtual bool | NeedsArp (void) const |
virtual void | SetReceiveCallback (NetDevice::ReceiveCallback cb) |
virtual void | SetPromiscReceiveCallback (NetDevice::PromiscReceiveCallback cb) |
virtual bool | SupportsSendFrom () const |
virtual bool | IsBridge (void) const |
Return true if the net device is acting as a bridge. | |
Static Public Member Functions | |
static TypeId | GetTypeId (void) |
This method returns the TypeId associated to ns3::VirtualNetDevice. | |
Protected Member Functions | |
virtual void | DoDispose (void) |
A VirtualNetDevice is a "virtual" NetDevice implementation which delegates to a user callback (see method SetSendCallback()) the task of actually transmitting a packet. It also allows the user code to inject the packet as if it had been received by the VirtualNetDevice. Together, these features allow one to build tunnels. For instance, by transmitting packets into a UDP socket we end up building an IP-over-UDP-over-IP tunnel, or IP-over-IP tunnels.
The same thing could be accomplished by subclassing NetDevice directly. However, VirtualNetDevice is usually much simpler to program than a NetDevice subclass.
typedef Callback<bool, Ptr<Packet>, const Address&, const Address&, uint16_t> ns3::VirtualNetDevice::SendCallback |
Callback the be invoked when the VirtualNetDevice is asked to queue/transmit a packet. For more information, consult the documentation of NetDevice::SendFrom().
virtual void ns3::VirtualNetDevice::DoDispose | ( | void | ) | [protected, virtual] |
This method is called by Object::Dispose or by the object's destructor, whichever comes first.
Subclasses are expected to implement their real destruction code in an overriden version of this method and chain up to their parent's implementation once they are done. i.e., for simplicity, the destructor of every subclass should be empty and its content should be moved to the associated DoDispose method.
Reimplemented from ns3::Object.
virtual Address ns3::VirtualNetDevice::GetAddress | ( | void | ) | const [virtual] |
virtual Address ns3::VirtualNetDevice::GetBroadcast | ( | void | ) | const [virtual] |
Implements ns3::NetDevice.
Implements ns3::NetDevice.
virtual uint32_t ns3::VirtualNetDevice::GetIfIndex | ( | void | ) | const [virtual] |
virtual uint16_t ns3::VirtualNetDevice::GetMtu | ( | void | ) | const [virtual] |
Implements ns3::NetDevice.
virtual Address ns3::VirtualNetDevice::GetMulticast | ( | Ipv6Address | addr | ) | const [virtual] |
Get the MAC multicast address corresponding to the IPv6 address provided.
addr | IPv6 address |
Implements ns3::NetDevice.
virtual Address ns3::VirtualNetDevice::GetMulticast | ( | Ipv4Address | multicastGroup | ) | const [virtual] |
Make and return a MAC multicast address using the provided multicast group.
RFC 1112 says that an Ipv4 host group address is mapped to an Ethernet multicast address by placing the low-order 23-bits of the IP address into the low-order 23 bits of the Ethernet multicast address 01-00-5E-00-00-00 (hex). Similar RFCs exist for Ipv6 and Eui64 mappings. This method performs the multicast address creation function appropriate to the underlying MAC address of the device. This MAC address is encapsulated in an abstract Address to avoid dependencies on the exact MAC address format.
A default imlementation of GetMulticast is provided, but this method simply NS_ASSERTS. In the case of net devices that do not support multicast, clients are expected to test NetDevice::IsMulticast and avoid attempting to map multicast packets. Subclasses of NetDevice that do support multicasting are expected to override this method and provide an implementation appropriate to the particular device.
multicastGroup | The IP address for the multicast group destination of the packet. |
Implements ns3::NetDevice.
Implements ns3::NetDevice.
static TypeId ns3::VirtualNetDevice::GetTypeId | ( | void | ) | [static] |
This method returns the TypeId associated to ns3::VirtualNetDevice.
This object is accessible through the following paths with Config::Set and Config::Connect:
Reimplemented from ns3::NetDevice.
virtual bool ns3::VirtualNetDevice::IsBridge | ( | void | ) | const [virtual] |
Return true if the net device is acting as a bridge.
Implements ns3::NetDevice.
virtual bool ns3::VirtualNetDevice::IsBroadcast | ( | void | ) | const [virtual] |
Implements ns3::NetDevice.
virtual bool ns3::VirtualNetDevice::IsLinkUp | ( | void | ) | const [virtual] |
virtual bool ns3::VirtualNetDevice::IsMulticast | ( | void | ) | const [virtual] |
virtual bool ns3::VirtualNetDevice::IsPointToPoint | ( | void | ) | const [virtual] |
Return true if the net device is on a point-to-point link.
Implements ns3::NetDevice.
virtual bool ns3::VirtualNetDevice::NeedsArp | ( | void | ) | const [virtual] |
Implements ns3::NetDevice.
bool ns3::VirtualNetDevice::Receive | ( | Ptr< Packet > | packet, | |
uint16_t | protocol, | |||
const Address & | source, | |||
const Address & | destination, | |||
PacketType | packetType | |||
) |
packet | packet sent from below up to Network Device | |
protocol | Protocol type | |
source | the address of the sender of this packet. | |
destination | the address of the receiver of this packet. | |
packetType | type of packet received (broadcast/multicast/unicast/otherhost) |
virtual bool ns3::VirtualNetDevice::Send | ( | Ptr< Packet > | packet, | |
const Address & | dest, | |||
uint16_t | protocolNumber | |||
) | [virtual] |
packet | packet sent from above down to Network Device | |
dest | mac address of the destination (already resolved) | |
protocolNumber | identifies the type of payload contained in this packet. Used to call the right L3Protocol when the packet is received. |
Implements ns3::NetDevice.
virtual bool ns3::VirtualNetDevice::SendFrom | ( | Ptr< Packet > | packet, | |
const Address & | source, | |||
const Address & | dest, | |||
uint16_t | protocolNumber | |||
) | [virtual] |
packet | packet sent from above down to Network Device | |
source | source mac address (so called "MAC spoofing") | |
dest | mac address of the destination (already resolved) | |
protocolNumber | identifies the type of payload contained in this packet. Used to call the right L3Protocol when the packet is received. |
Implements ns3::NetDevice.
virtual void ns3::VirtualNetDevice::SetAddress | ( | Address | address | ) | [virtual] |
Set the address of this interface
Implements ns3::NetDevice.
virtual void ns3::VirtualNetDevice::SetIfIndex | ( | const uint32_t | index | ) | [virtual] |
void ns3::VirtualNetDevice::SetIsPointToPoint | ( | bool | isPointToPoint | ) |
Configure whether the virtual device is point-to-point.
isPointToPoint | the value that should be returned by the IsPointToPoint method for this instance. |
virtual void ns3::VirtualNetDevice::SetLinkChangeCallback | ( | Callback< void > | callback | ) | [virtual] |
callback | the callback to invoke |
Implements ns3::NetDevice.
bool ns3::VirtualNetDevice::SetMtu | ( | const uint16_t | mtu | ) | [virtual] |
Configure the reported MTU for the virtual device. The default value is 65535.
Implements ns3::NetDevice.
void ns3::VirtualNetDevice::SetNeedsArp | ( | bool | needsArp | ) |
Configure whether the virtual device needs ARP.
needsArp | the the 'needs arp' value that will be returned by the NeedsArp() method. The method IsBroadcast() will also return this value. |
node | the node associated to this netdevice. |
Implements ns3::NetDevice.
virtual void ns3::VirtualNetDevice::SetPromiscReceiveCallback | ( | NetDevice::PromiscReceiveCallback | cb | ) | [virtual] |
cb | callback to invoke whenever a packet has been received in promiscuous mode and must be forwarded to the higher layers. |
Implements ns3::NetDevice.
virtual void ns3::VirtualNetDevice::SetReceiveCallback | ( | NetDevice::ReceiveCallback | cb | ) | [virtual] |
cb | callback to invoke whenever a packet has been received and must be forwarded to the higher layers. |
Implements ns3::NetDevice.
void ns3::VirtualNetDevice::SetSendCallback | ( | SendCallback | transmitCb | ) |
Set the user callback to be called when a L2 packet is to be transmitted.
transmitCb | the new transmit callback |
virtual bool ns3::VirtualNetDevice::SupportsSendFrom | ( | ) | const [virtual] |
Implements ns3::NetDevice.