A Discrete-Event Network Simulator
API
ns3::dot11s::PeerManagementProtocolMac Class Reference

This is plugin to Mesh WiFi MAC, which implements the interface to dot11s peer management protocol: it takes proper frames from MAC-layer, extracts peer link management information element and mesh configuration element and passes it to main part of protocol. More...

#include "peer-management-protocol-mac.h"

+ Inheritance diagram for ns3::dot11s::PeerManagementProtocolMac:
+ Collaboration diagram for ns3::dot11s::PeerManagementProtocolMac:

Classes

struct  PlinkFrameStart
 This structure keeps all fields in peer link management frame, which are not subclasses of WifiInformationElement. More...
 
struct  Statistics
 Statistics structure. More...
 

Public Member Functions

 PeerManagementProtocolMac (uint32_t interface, Ptr< PeerManagementProtocol > protocol)
 Constructor. More...
 
 ~PeerManagementProtocolMac ()
 
int64_t AssignStreams (int64_t stream)
 Assign the streams. More...
 
bool Receive (Ptr< Packet > packet, const WifiMacHeader &header)
 Receive and process a packet. More...
 
void SetParent (Ptr< MeshWifiInterfaceMac > parent)
 Set pointer to parent. More...
 
void UpdateBeacon (MeshWifiBeacon &beacon) const
 Add beacon timing and mesh ID information elements, and notify beacon sent. More...
 
bool UpdateOutcomingFrame (Ptr< Packet > packet, WifiMacHeader &header, Mac48Address from, Mac48Address to)
 This method appears to test a few conditions. More...
 
Statistics
void Report (std::ostream &) const
 
void ResetStats ()
 
uint32_t GetLinkMetric (Mac48Address peerAddress)
 
- Public Member Functions inherited from ns3::MeshWifiInterfaceMacPlugin
virtual ~MeshWifiInterfaceMacPlugin ()
 This is for subclasses. More...
 
- Public Member Functions inherited from ns3::SimpleRefCount< MeshWifiInterfaceMacPlugin >
 SimpleRefCount ()
 Default constructor. More...
 
 SimpleRefCount (const SimpleRefCount &o)
 Copy constructor. More...
 
uint32_t GetReferenceCount (void) const
 Get the reference count of the object. More...
 
SimpleRefCountoperator= (const SimpleRefCount &o)
 Assignment operator. More...
 
void Ref (void) const
 Increment the reference count. More...
 
void Unref (void) const
 Decrement the reference count. More...
 

Private Member Functions

 PeerManagementProtocolMac (const PeerManagementProtocolMac &)
 type conversion operator More...
 
Mac48Address GetAddress () const
 debug only, used to print established links More...
 
PeerManagementProtocolMacoperator= (const PeerManagementProtocolMac &peer)
 assignment operator More...
 
void SendPeerLinkManagementFrame (Mac48Address peerAddress, Mac48Address peerMpAddress, uint16_t aid, IePeerManagement peerElement, IeConfiguration meshConfig)
 Send peer link management frame function. More...
 
void SetBeaconShift (Time shift)
 Set beacon shift function. More...
 
void SetPeerManagerProtcol (Ptr< PeerManagementProtocol > protocol)
 Set peer manager protocol function. More...
 
void TxError (WifiMacHeader const &hdr)
 Closes link when a proper number of successive transmissions have failed. More...
 
void TxOk (WifiMacHeader const &hdr)
 Transmit OK function. More...
 
Create peer link management frames
Ptr< PacketCreatePeerLinkOpenFrame ()
 Create peer link open frame function. More...
 
Ptr< PacketCreatePeerLinkConfirmFrame ()
 Create peer link confirm frame function. More...
 
Ptr< PacketCreatePeerLinkCloseFrame ()
 Create peer link clode frame function. More...
 
PlinkFrameStart ParsePlinkFrame (Ptr< const Packet > packet)
 Parses the start of the frame, where no WifiInformationElements exist. More...
 

Private Attributes

struct Statistics m_stats
 statistics More...
 
Information about MAC and protocol:
Ptr< MeshWifiInterfaceMacm_parent
 parent More...
 
uint32_t m_ifIndex
 IF index. More...
 
Ptr< PeerManagementProtocolm_protocol
 protocol More...
 

Friends

class PeerLink
 allow PeerLink class access friend access More...
 
class PeerManagementProtocol
 allow PeerManagementProtocol class access friend access More...
 

Detailed Description

This is plugin to Mesh WiFi MAC, which implements the interface to dot11s peer management protocol: it takes proper frames from MAC-layer, extracts peer link management information element and mesh configuration element and passes it to main part of protocol.

Definition at line 42 of file peer-management-protocol-mac.h.

Constructor & Destructor Documentation

ns3::dot11s::PeerManagementProtocolMac::PeerManagementProtocolMac ( uint32_t  interface,
Ptr< PeerManagementProtocol protocol 
)

Constructor.

Parameters
interfaceinterface index
protocolpeer management protocol

Definition at line 38 of file peer-management-protocol-mac.cc.

References m_ifIndex, and m_protocol.

ns3::dot11s::PeerManagementProtocolMac::~PeerManagementProtocolMac ( )

Definition at line 45 of file peer-management-protocol-mac.cc.

ns3::dot11s::PeerManagementProtocolMac::PeerManagementProtocolMac ( const PeerManagementProtocolMac )
private

type conversion operator

Member Function Documentation

int64_t ns3::dot11s::PeerManagementProtocolMac::AssignStreams ( int64_t  stream)
virtual

Assign the streams.

Parameters
streamthe stream to assign
Returns
the assigned stream

Implements ns3::MeshWifiInterfaceMacPlugin.

Definition at line 387 of file peer-management-protocol-mac.cc.

References m_protocol.

Ptr<Packet> ns3::dot11s::PeerManagementProtocolMac::CreatePeerLinkCloseFrame ( )
private

Create peer link clode frame function.

Returns
the packet
Ptr<Packet> ns3::dot11s::PeerManagementProtocolMac::CreatePeerLinkConfirmFrame ( )
private

Create peer link confirm frame function.

Returns
the packet
Ptr<Packet> ns3::dot11s::PeerManagementProtocolMac::CreatePeerLinkOpenFrame ( )
private

Create peer link open frame function.

Returns
the packet
Mac48Address ns3::dot11s::PeerManagementProtocolMac::GetAddress ( void  ) const
private

debug only, used to print established links

Returns
the MAC address

Definition at line 325 of file peer-management-protocol-mac.cc.

References m_parent.

Referenced by ns3::dot11s::PeerLink::Report().

+ Here is the caller graph for this function:

uint32_t ns3::dot11s::PeerManagementProtocolMac::GetLinkMetric ( Mac48Address  peerAddress)

Definition at line 382 of file peer-management-protocol-mac.cc.

References m_parent.

Referenced by ns3::dot11s::PeerLink::Report().

+ Here is the caller graph for this function:

PeerManagementProtocolMac& ns3::dot11s::PeerManagementProtocolMac::operator= ( const PeerManagementProtocolMac peer)
private

assignment operator

Parameters
peerthe object to assign
Returns
the assigned value
PlinkFrameStart ns3::dot11s::PeerManagementProtocolMac::ParsePlinkFrame ( Ptr< const Packet packet)
private

Parses the start of the frame, where no WifiInformationElements exist.

Parameters
packetthe packet
Returns
PlinkFrameStart
bool ns3::dot11s::PeerManagementProtocolMac::Receive ( Ptr< Packet packet,
const WifiMacHeader header 
)
virtual

Receive and process a packet.

Parameters
packetthe packet received
headerthe header
Returns
true if received

Implements ns3::MeshWifiInterfaceMacPlugin.

Definition at line 67 of file peer-management-protocol-mac.cc.

References ns3::dot11s::PeerLinkConfirmStart::PlinkConfirmStartFields::aid, ns3::dot11s::PeerManagementProtocolMac::Statistics::brokenMgt, ns3::dot11s::PeerLinkOpenStart::PlinkOpenStartFields::config, ns3::dot11s::PeerLinkConfirmStart::PlinkConfirmStartFields::config, ns3::Packet::Copy(), ns3::WifiInformationElementVector::FindFirst(), ns3::WifiActionHeader::GetAction(), ns3::WifiMacHeader::GetAddr2(), ns3::WifiMacHeader::GetAddr3(), ns3::WifiActionHeader::GetCategory(), ns3::dot11s::PeerLinkOpenStart::GetFields(), ns3::dot11s::PeerLinkCloseStart::GetFields(), ns3::dot11s::PeerLinkConfirmStart::GetFields(), ns3::Packet::GetSize(), IE_BEACON_TIMING, IE_MESH_ID, IE_MESH_PEERING_MANAGEMENT, ns3::WifiMacHeader::IsAction(), ns3::WifiMacHeader::IsBeacon(), ns3::dot11s::IeMeshId::IsEqual(), m_ifIndex, m_parent, m_protocol, m_stats, ns3::dot11s::PeerLinkOpenStart::PlinkOpenStartFields::meshId, ns3::dot11s::PeerLinkCloseStart::PlinkCloseStartFields::meshId, ns3::MicroSeconds(), NS_ASSERT, NS_FATAL_ERROR, NS_LOG_DEBUG, NS_LOG_FUNCTION, ns3::WifiActionHeader::PEER_LINK_CLOSE, ns3::WifiActionHeader::PEER_LINK_CONFIRM, ns3::WifiActionHeader::PEER_LINK_OPEN, ns3::dot11s::PeerLinkOpenStart::PlinkOpenStartFields::rates, ns3::dot11s::PeerLinkConfirmStart::PlinkConfirmStartFields::rates, ns3::Packet::RemoveHeader(), ns3::dot11s::PeerManagementProtocolMac::Statistics::rxClose, ns3::dot11s::PeerManagementProtocolMac::Statistics::rxConfirm, ns3::dot11s::PeerManagementProtocolMac::Statistics::rxMgt, ns3::dot11s::PeerManagementProtocolMac::Statistics::rxMgtBytes, ns3::dot11s::PeerManagementProtocolMac::Statistics::rxOpen, ns3::WifiActionHeader::SELF_PROTECTED, and ns3::WifiActionHeader::ActionValue::selfProtectedAction.

+ Here is the call graph for this function:

void ns3::dot11s::PeerManagementProtocolMac::Report ( std::ostream &  os) const

Definition at line 369 of file peer-management-protocol-mac.cc.

References m_parent, m_stats, and ns3::dot11s::PeerManagementProtocolMac::Statistics::Print().

+ Here is the call graph for this function:

void ns3::dot11s::PeerManagementProtocolMac::ResetStats ( )

Definition at line 377 of file peer-management-protocol-mac.cc.

References m_stats.

void ns3::dot11s::PeerManagementProtocolMac::SendPeerLinkManagementFrame ( Mac48Address  peerAddress,
Mac48Address  peerMpAddress,
uint16_t  aid,
IePeerManagement  peerElement,
IeConfiguration  meshConfig 
)
private

Send peer link management frame function.

Parameters
peerAddressthe peer MAC address
peerMpAddressthe peer MP address
aidthe AID
peerElementIePeerManagement
meshConfigIeConfiguration

Definition at line 250 of file peer-management-protocol-mac.cc.

References ns3::Packet::AddHeader(), ns3::WifiInformationElementVector::AddInformationElement(), ns3::dot11s::PeerLinkConfirmStart::PlinkConfirmStartFields::aid, ns3::dot11s::PeerLinkOpenStart::PlinkOpenStartFields::capability, ns3::dot11s::PeerLinkConfirmStart::PlinkConfirmStartFields::capability, ns3::dot11s::PeerLinkOpenStart::PlinkOpenStartFields::config, ns3::dot11s::PeerLinkConfirmStart::PlinkConfirmStartFields::config, ns3::Packet::GetSize(), m_parent, m_protocol, m_stats, ns3::dot11s::PeerLinkOpenStart::PlinkOpenStartFields::meshId, ns3::dot11s::PeerLinkCloseStart::PlinkCloseStartFields::meshId, NS_LOG_FUNCTION, ns3::WifiActionHeader::PEER_LINK_CLOSE, ns3::WifiActionHeader::PEER_LINK_CONFIRM, ns3::WifiActionHeader::PEER_LINK_OPEN, ns3::dot11s::PeerLinkOpenStart::PlinkOpenStartFields::rates, ns3::dot11s::PeerLinkConfirmStart::PlinkConfirmStartFields::rates, ns3::WifiActionHeader::SELF_PROTECTED, ns3::WifiActionHeader::ActionValue::selfProtectedAction, ns3::WifiMacHeader::SetAction(), ns3::WifiActionHeader::SetAction(), ns3::WifiMacHeader::SetAddr1(), ns3::WifiMacHeader::SetAddr2(), ns3::WifiMacHeader::SetAddr3(), ns3::WifiMacHeader::SetDsNotFrom(), ns3::WifiMacHeader::SetDsNotTo(), ns3::dot11s::IeConfiguration::SetNeighborCount(), ns3::dot11s::PeerLinkCloseStart::SetPlinkCloseStart(), ns3::dot11s::PeerLinkConfirmStart::SetPlinkConfirmStart(), ns3::dot11s::PeerLinkOpenStart::SetPlinkOpenStart(), ns3::dot11s::IePeerManagement::SubtypeIsClose(), ns3::dot11s::IePeerManagement::SubtypeIsConfirm(), ns3::dot11s::IePeerManagement::SubtypeIsOpen(), ns3::dot11s::PeerManagementProtocolMac::Statistics::txClose, ns3::dot11s::PeerManagementProtocolMac::Statistics::txConfirm, ns3::dot11s::PeerManagementProtocolMac::Statistics::txMgt, ns3::dot11s::PeerManagementProtocolMac::Statistics::txMgtBytes, and ns3::dot11s::PeerManagementProtocolMac::Statistics::txOpen.

Referenced by ns3::dot11s::PeerLink::SendPeerLinkClose(), ns3::dot11s::PeerLink::SendPeerLinkConfirm(), and ns3::dot11s::PeerLink::SendPeerLinkOpen().

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

void ns3::dot11s::PeerManagementProtocolMac::SetBeaconShift ( Time  shift)
private

Set beacon shift function.

Parameters
shiftthe beacon time shift

Definition at line 337 of file peer-management-protocol-mac.cc.

References ns3::dot11s::PeerManagementProtocolMac::Statistics::beaconShift, m_parent, m_stats, and ns3::Seconds().

+ Here is the call graph for this function:

void ns3::dot11s::PeerManagementProtocolMac::SetParent ( Ptr< MeshWifiInterfaceMac parent)
virtual

Set pointer to parent.

Parameters
parentPtr<MeshWifiInterfaceMac>

Implements ns3::MeshWifiInterfaceMacPlugin.

Definition at line 50 of file peer-management-protocol-mac.cc.

References m_parent, ns3::MakeCallback(), TxError(), and TxOk().

+ Here is the call graph for this function:

void ns3::dot11s::PeerManagementProtocolMac::SetPeerManagerProtcol ( Ptr< PeerManagementProtocol protocol)
private

Set peer manager protocol function.

Parameters
protocolthe peer manager protocol
void ns3::dot11s::PeerManagementProtocolMac::TxError ( WifiMacHeader const &  hdr)
private

Closes link when a proper number of successive transmissions have failed.

Parameters
hdrthe header

Definition at line 57 of file peer-management-protocol-mac.cc.

References ns3::WifiMacHeader::GetAddr1(), m_ifIndex, and m_protocol.

Referenced by SetParent().

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

void ns3::dot11s::PeerManagementProtocolMac::TxOk ( WifiMacHeader const &  hdr)
private

Transmit OK function.

Parameters
hdrthe header

Definition at line 62 of file peer-management-protocol-mac.cc.

References ns3::WifiMacHeader::GetAddr1(), m_ifIndex, and m_protocol.

Referenced by SetParent().

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

void ns3::dot11s::PeerManagementProtocolMac::UpdateBeacon ( MeshWifiBeacon beacon) const
virtual

Add beacon timing and mesh ID information elements, and notify beacon sent.

Parameters
beaconthe beacon

Implements ns3::MeshWifiInterfaceMacPlugin.

Definition at line 238 of file peer-management-protocol-mac.cc.

References ns3::MeshWifiBeacon::AddInformationElement(), ns3::MeshWifiBeacon::GetBeaconInterval(), m_ifIndex, and m_protocol.

+ Here is the call graph for this function:

bool ns3::dot11s::PeerManagementProtocolMac::UpdateOutcomingFrame ( Ptr< Packet packet,
WifiMacHeader header,
Mac48Address  from,
Mac48Address  to 
)
virtual

This method appears to test a few conditions.

If an action frame, it returns true if SELF_PROTECTED. It then checks if it is either a broadcast or sent on an active link, and returns true if so. Otherwise, it returns false (indicating it is to be dropped)

Parameters
packetthe packet
headerthe header
fromthe MAC address of the sender
tothe MAC address of the receiver
Returns
true if successful, false if to be dropped

Implements ns3::MeshWifiInterfaceMacPlugin.

Definition at line 207 of file peer-management-protocol-mac.cc.

References ns3::dot11s::PeerManagementProtocolMac::Statistics::dropped, ns3::WifiMacHeader::GetAddr1(), ns3::WifiActionHeader::GetCategory(), ns3::WifiMacHeader::IsAction(), ns3::Mac48Address::IsGroup(), m_ifIndex, m_protocol, m_stats, NS_LOG_FUNCTION, ns3::Packet::PeekHeader(), and ns3::WifiActionHeader::SELF_PROTECTED.

+ Here is the call graph for this function:

Friends And Related Function Documentation

friend class PeerLink
friend

allow PeerLink class access friend access

Definition at line 111 of file peer-management-protocol-mac.h.

friend class PeerManagementProtocol
friend

allow PeerManagementProtocol class access friend access

Definition at line 109 of file peer-management-protocol-mac.h.

Member Data Documentation

uint32_t ns3::dot11s::PeerManagementProtocolMac::m_ifIndex
private
Ptr<MeshWifiInterfaceMac> ns3::dot11s::PeerManagementProtocolMac::m_parent
private
Ptr<PeerManagementProtocol> ns3::dot11s::PeerManagementProtocolMac::m_protocol
private
struct Statistics ns3::dot11s::PeerManagementProtocolMac::m_stats
private

The documentation for this class was generated from the following files: