Net device for UAN models. More...
#include <uan-net-device.h>
Public Types | |
typedef std::list< Ptr< UanPhy > > | UanPhyList |
UanPhyList is defined as a standard template lib list of UanPhy objects. | |
typedef std::list< Ptr < UanTransducer > > | UanTransducerList |
UanTransducerList is a standard template lib list of UanTransducer objects. | |
![]() | |
enum | PacketType { PACKET_HOST = 1, NS3_PACKET_HOST = PACKET_HOST, PACKET_BROADCAST, NS3_PACKET_BROADCAST = PACKET_BROADCAST, PACKET_MULTICAST, NS3_PACKET_MULTICAST = PACKET_MULTICAST, PACKET_OTHERHOST, NS3_PACKET_OTHERHOST = PACKET_OTHERHOST } |
typedef Callback< bool, Ptr < NetDevice >, Ptr< const Packet >, uint16_t, const Address &, const Address &, enum PacketType > | PromiscReceiveCallback |
typedef Callback< bool, Ptr < NetDevice >, Ptr< const Packet >, uint16_t, const Address & > | ReceiveCallback |
Public Member Functions | |
UanNetDevice () | |
virtual | ~UanNetDevice () |
virtual void | AddLinkChangeCallback (Callback< void > callback) |
void | Clear (void) |
virtual Address | GetAddress (void) const |
virtual Address | GetBroadcast (void) const |
virtual Ptr< Channel > | GetChannel (void) const |
virtual uint32_t | GetIfIndex (void) const |
Ptr< UanMac > | GetMac (void) const |
virtual uint16_t | GetMtu (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 Ptr< Node > | GetNode (void) const |
Ptr< UanPhy > | GetPhy (void) const |
Ptr< UanTransducer > | GetTransducer (void) const |
virtual bool | IsBridge (void) const |
Return true if the net device is acting as a bridge. | |
virtual bool | IsBroadcast (void) const |
virtual bool | IsLinkUp (void) const |
virtual bool | IsMulticast (void) const |
virtual bool | IsPointToPoint (void) const |
Return true if the net device is on a point-to-point link. | |
virtual bool | NeedsArp (void) const |
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 void | SetAddress (Address address) |
void | SetChannel (Ptr< UanChannel > channel) |
virtual void | SetIfIndex (const uint32_t index) |
void | SetMac (Ptr< UanMac > mac) |
virtual bool | SetMtu (const uint16_t mtu) |
virtual void | SetNode (Ptr< Node > node) |
void | SetPhy (Ptr< UanPhy > phy) |
virtual void | SetPromiscReceiveCallback (PromiscReceiveCallback cb) |
virtual void | SetReceiveCallback (NetDevice::ReceiveCallback cb) |
void | SetSleepMode (bool sleep) |
void | SetTransducer (Ptr< UanTransducer > trans) |
virtual bool | SupportsSendFrom (void) const |
![]() | |
virtual | ~NetDevice () |
![]() | |
Object () | |
virtual | ~Object () |
void | AggregateObject (Ptr< Object > other) |
void | Dispose (void) |
AggregateIterator | GetAggregateIterator (void) const |
virtual TypeId | GetInstanceTypeId (void) const |
template<typename T > | |
Ptr< T > | GetObject (void) const |
template<typename T > | |
Ptr< T > | GetObject (TypeId tid) const |
void | Initialize (void) |
![]() | |
SimpleRefCount () | |
SimpleRefCount (const SimpleRefCount &o) | |
uint32_t | GetReferenceCount (void) const |
SimpleRefCount & | operator= (const SimpleRefCount &o) |
void | Ref (void) const |
void | Unref (void) const |
![]() | |
virtual | ~ObjectBase () |
void | GetAttribute (std::string name, AttributeValue &value) const |
bool | GetAttributeFailSafe (std::string name, AttributeValue &attribute) const |
void | SetAttribute (std::string name, const AttributeValue &value) |
bool | SetAttributeFailSafe (std::string name, const AttributeValue &value) |
bool | TraceConnect (std::string name, std::string context, const CallbackBase &cb) |
bool | TraceConnectWithoutContext (std::string name, const CallbackBase &cb) |
bool | TraceDisconnect (std::string name, std::string context, const CallbackBase &cb) |
bool | TraceDisconnectWithoutContext (std::string name, const CallbackBase &cb) |
Static Public Member Functions | |
static TypeId | GetTypeId (void) |
Protected Member Functions | |
virtual void | DoDispose () |
Private Member Functions | |
Ptr< UanChannel > | DoGetChannel (void) const |
virtual void | ForwardUp (Ptr< Packet > pkt, const UanAddress &src) |
Private Attributes | |
Ptr< UanChannel > | m_channel |
bool | m_cleared |
ReceiveCallback | m_forwardUp |
uint32_t | m_ifIndex |
TracedCallback | m_linkChanges |
bool | m_linkup |
Ptr< UanMac > | m_mac |
uint16_t | m_mtu |
std::string | m_name |
Ptr< Node > | m_node |
Ptr< UanPhy > | m_phy |
TracedCallback< Ptr< const Packet >, UanAddress > | m_rxLogger |
Ptr< UanTransducer > | m_trans |
TracedCallback< Ptr< const Packet >, UanAddress > | m_txLogger |
Net device for UAN models.
ns3::UanNetDevice is accessible through the following paths with Config::Set and Config::Connect:
Definition at line 48 of file uan-net-device.h.
typedef std::list<Ptr<UanPhy> > ns3::UanNetDevice::UanPhyList |
UanPhyList is defined as a standard template lib list of UanPhy objects.
Definition at line 54 of file uan-net-device.h.
UanTransducerList is a standard template lib list of UanTransducer objects.
Definition at line 58 of file uan-net-device.h.
ns3::UanNetDevice::UanNetDevice | ( | ) |
Definition at line 39 of file uan-net-device.cc.
|
virtual |
Definition at line 46 of file uan-net-device.cc.
|
virtual |
callback | the callback to invoke |
Add a callback invoked whenever the link status changes to UP. This callback is typically used by the IP/ARP layer to flush the ARP cache and by IPv6 stack to flush NDISC cache whenever the link goes up.
Implements ns3::NetDevice.
Definition at line 366 of file uan-net-device.cc.
References ns3::TracedCallback< T1, T2, T3, T4, T5, T6, T7, T8 >::ConnectWithoutContext(), and m_linkChanges.
void ns3::UanNetDevice::Clear | ( | void | ) |
Clears all pointer references
Definition at line 51 of file uan-net-device.cc.
References ns3::UanMac::Clear(), ns3::UanChannel::Clear(), ns3::UanTransducer::Clear(), ns3::UanPhy::Clear(), m_channel, m_cleared, m_mac, m_node, m_phy, and m_trans.
Referenced by ns3::UanPhyGen::Clear(), and DoDispose().
|
protectedvirtual |
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.
It is safe to call GetObject from within this method.
Reimplemented from ns3::Object.
Definition at line 82 of file uan-net-device.cc.
References Clear().
|
private |
Definition at line 185 of file uan-net-device.cc.
References m_channel.
Referenced by GetTypeId().
|
privatevirtual |
Definition at line 328 of file uan-net-device.cc.
References m_forwardUp, m_rxLogger, and NS_LOG_DEBUG.
Referenced by SetMac().
|
virtual |
Implements ns3::NetDevice.
Definition at line 221 of file uan-net-device.cc.
References ns3::UanMac::GetAddress(), and m_mac.
|
virtual |
Calling this method is invalid if IsBroadcast returns not true.
Implements ns3::NetDevice.
Definition at line 254 of file uan-net-device.cc.
References ns3::UanMac::GetBroadcast(), and m_mac.
Referenced by UanTest::SendOnePacket().
Implements ns3::NetDevice.
Definition at line 215 of file uan-net-device.cc.
References m_channel.
|
virtual |
Implements ns3::NetDevice.
Definition at line 209 of file uan-net-device.cc.
References m_ifIndex.
Definition at line 191 of file uan-net-device.cc.
References m_mac.
Referenced by ns3::UanHelper::AssignStreams(), and GetTypeId().
|
virtual |
This value is typically used by the IP layer to perform IP fragmentation when needed.
Implements ns3::NetDevice.
Definition at line 236 of file uan-net-device.cc.
References m_mtu.
|
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.
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.
Definition at line 266 of file uan-net-device.cc.
References ns3::UanMac::GetBroadcast(), m_mac, and NS_FATAL_ERROR.
|
virtual |
Get the MAC multicast address corresponding to the IPv6 address provided.
addr | IPv6 address |
Implements ns3::NetDevice.
Definition at line 273 of file uan-net-device.cc.
References ns3::UanMac::GetBroadcast(), m_mac, and NS_FATAL_ERROR.
When a subclass needs to get access to the underlying node base class to print the nodeid for example, it can invoke this method.
Implements ns3::NetDevice.
Definition at line 304 of file uan-net-device.cc.
References m_node.
Referenced by ns3::UanPhyGen::EnergyDepletionHandler().
Definition at line 197 of file uan-net-device.cc.
References m_phy.
Referenced by ns3::UanHelper::AssignStreams(), ns3::AcousticModemEnergyModelHelper::DoInstall(), ns3::AcousticModemEnergyTestCase::DoRun(), GetTypeId(), and ns3::AcousticModemEnergyModel::HandleEnergyDepletion().
Ptr< UanTransducer > ns3::UanNetDevice::GetTransducer | ( | void | ) | const |
Definition at line 337 of file uan-net-device.cc.
References m_trans.
Referenced by GetTypeId().
|
static |
Reimplemented from ns3::NetDevice.
Definition at line 89 of file uan-net-device.cc.
References DoGetChannel(), GetMac(), GetPhy(), GetTransducer(), m_rxLogger, m_txLogger, ns3::MakeTraceSourceAccessor(), SetChannel(), SetMac(), ns3::TypeId::SetParent(), SetPhy(), and SetTransducer().
|
virtual |
Return true if the net device is acting as a bridge.
Implements ns3::NetDevice.
Definition at line 280 of file uan-net-device.cc.
|
virtual |
Implements ns3::NetDevice.
Definition at line 248 of file uan-net-device.cc.
|
virtual |
Implements ns3::NetDevice.
Definition at line 242 of file uan-net-device.cc.
|
virtual |
Implements ns3::NetDevice.
Definition at line 260 of file uan-net-device.cc.
|
virtual |
Return true if the net device is on a point-to-point link.
Implements ns3::NetDevice.
Definition at line 285 of file uan-net-device.cc.
|
virtual |
Called by higher-layers to check if this NetDevice requires ARP to be used.
Implements ns3::NetDevice.
Definition at line 316 of file uan-net-device.cc.
|
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. |
Called from higher layer to send packet into Network Device to the specified destination Address
Implements ns3::NetDevice.
Definition at line 291 of file uan-net-device.cc.
References ns3::UanMac::Enqueue(), and m_mac.
Referenced by UanTest::SendOnePacket(), ns3::AcousticModemEnergyTestCase::SendOnePacket(), and ns3::AcousticModemEnergyDepletionTestCase::SendOnePacket().
|
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. |
Called from higher layer to send packet into Network Device with the specified source and destination Addresses.
Implements ns3::NetDevice.
Definition at line 297 of file uan-net-device.cc.
References NS_ASSERT_MSG.
|
virtual |
Set the address of this interface
address | address to set |
Implements ns3::NetDevice.
Definition at line 386 of file uan-net-device.cc.
References ns3::UanAddress::ConvertFrom(), m_mac, NS_ASSERT_MSG, and ns3::UanMac::SetAddress().
void ns3::UanNetDevice::SetChannel | ( | Ptr< UanChannel > | channel | ) |
channel | The channel this device is attached to |
Definition at line 163 of file uan-net-device.cc.
References ns3::UanChannel::AddDevice(), m_channel, m_phy, m_trans, NS_LOG_DEBUG, ns3::UanTransducer::SetChannel(), and ns3::UanPhy::SetChannel().
Referenced by GetTypeId(), and ns3::UanHelper::Install().
|
virtual |
index | ifIndex of the device |
Implements ns3::NetDevice.
Definition at line 203 of file uan-net-device.cc.
References m_ifIndex.
mac | Set MAC layer for this device |
Definition at line 121 of file uan-net-device.cc.
References ns3::UanMac::AttachPhy(), ForwardUp(), m_mac, m_phy, ns3::MakeCallback(), NS_LOG_DEBUG, ns3::UanMac::SetForwardUpCb(), and ns3::UanPhy::SetMac().
Referenced by GetTypeId(), and ns3::UanHelper::Install().
|
virtual |
mtu | MTU value, in bytes, to set for the device |
Override for default MTU defined on a per-type basis.
Implements ns3::NetDevice.
Definition at line 227 of file uan-net-device.cc.
References m_mtu, and NS_LOG_WARN.
node | the node associated to this netdevice. |
This method is called from ns3::Node::AddDevice.
Implements ns3::NetDevice.
Definition at line 310 of file uan-net-device.cc.
References m_node.
phy | Set PHY layer for this device |
Definition at line 140 of file uan-net-device.cc.
References ns3::UanMac::AttachPhy(), m_mac, m_phy, m_trans, NS_LOG_DEBUG, ns3::UanPhy::SetDevice(), ns3::UanPhy::SetMac(), and ns3::UanPhy::SetTransducer().
Referenced by GetTypeId(), and ns3::UanHelper::Install().
|
virtual |
cb | callback to invoke whenever a packet has been received in promiscuous mode and must be forwarded to the higher layers. |
Enables netdevice promiscuous mode and sets the callback that will handle promiscuous mode packets. Note, promiscuous mode packets means all packets, including those packets that can be sensed by the netdevice but which are intended to be received by other hosts.
Implements ns3::NetDevice.
Definition at line 373 of file uan-net-device.cc.
References NS_ASSERT_MSG.
|
virtual |
cb | callback to invoke whenever a packet has been received and must be forwarded to the higher layers. |
Implements ns3::NetDevice.
Definition at line 322 of file uan-net-device.cc.
References m_forwardUp.
Referenced by UanTest::DoOnePhyTest().
void ns3::UanNetDevice::SetSleepMode | ( | bool | sleep | ) |
Definition at line 393 of file uan-net-device.cc.
References m_phy, and ns3::UanPhy::SetSleepMode().
void ns3::UanNetDevice::SetTransducer | ( | Ptr< UanTransducer > | trans | ) |
trans | Transducer to use in this net device |
Definition at line 342 of file uan-net-device.cc.
References ns3::UanChannel::AddDevice(), m_channel, m_phy, m_trans, NS_LOG_DEBUG, ns3::UanTransducer::SetChannel(), and ns3::UanPhy::SetTransducer().
Referenced by GetTypeId(), and ns3::UanHelper::Install().
|
virtual |
Implements ns3::NetDevice.
Definition at line 380 of file uan-net-device.cc.
|
private |
Definition at line 137 of file uan-net-device.h.
Referenced by Clear(), DoGetChannel(), GetChannel(), SetChannel(), and SetTransducer().
|
private |
Definition at line 151 of file uan-net-device.h.
Referenced by Clear().
|
private |
Definition at line 146 of file uan-net-device.h.
Referenced by ForwardUp(), and SetReceiveCallback().
|
private |
Definition at line 142 of file uan-net-device.h.
Referenced by GetIfIndex(), and SetIfIndex().
|
private |
Definition at line 145 of file uan-net-device.h.
Referenced by AddLinkChangeCallback().
|
private |
Definition at line 144 of file uan-net-device.h.
Referenced by IsLinkUp().
Definition at line 138 of file uan-net-device.h.
Referenced by Clear(), GetAddress(), GetBroadcast(), GetMac(), GetMulticast(), Send(), SetAddress(), SetMac(), and SetPhy().
|
private |
Definition at line 143 of file uan-net-device.h.
|
private |
Definition at line 141 of file uan-net-device.h.
Definition at line 136 of file uan-net-device.h.
Definition at line 139 of file uan-net-device.h.
Referenced by Clear(), GetPhy(), IsLinkUp(), SetChannel(), SetMac(), SetPhy(), SetSleepMode(), and SetTransducer().
|
private |
Definition at line 148 of file uan-net-device.h.
Referenced by ForwardUp(), and GetTypeId().
|
private |
Definition at line 135 of file uan-net-device.h.
Referenced by Clear(), GetTransducer(), SetChannel(), SetPhy(), and SetTransducer().
|
private |
Definition at line 149 of file uan-net-device.h.
Referenced by GetTypeId().