Peer link model for 802.11s Peer Management protocol. More...
#include "peer-link.h"
Public Types | |
enum | PeerState { IDLE , OPN_SNT , CNF_RCVD , OPN_RCVD , ESTAB , HOLDING } |
Peer Link state: More... | |
Public Member Functions | |
PeerLink () | |
C-tor create empty link. | |
PeerLink (const PeerLink &)=delete | |
~PeerLink () override | |
void | DoDispose () override |
Destructor implementation. | |
PeerLink & | operator= (const PeerLink &)=delete |
void | Report (std::ostream &os) const |
Statistics. | |
void | SetBeaconInformation (Time lastBeacon, Time BeaconInterval) |
Process beacon received from peer. | |
void | SetLinkStatusCallback (Callback< void, uint32_t, Mac48Address, bool > cb) |
Method used to detect peer link changes. | |
Peer link getters/setters | |
void | SetPeerAddress (Mac48Address macaddr) |
Set the peer address. | |
void | SetPeerMeshPointAddress (Mac48Address macaddr) |
Set the peer mesh point address. | |
void | SetInterface (uint32_t interface) |
Set the interface. | |
void | SetLocalLinkId (uint16_t id) |
Set the local link ID. | |
void | SetLocalAid (uint16_t aid) |
Set the local association ID. | |
uint16_t | GetPeerAid () const |
Set the peer association ID. | |
void | SetBeaconTimingElement (IeBeaconTiming beaconTiming) |
Set the beacon timing element. | |
Mac48Address | GetPeerAddress () const |
Get the peer address. | |
uint16_t | GetLocalAid () const |
Get the local association ID. | |
Time | GetLastBeacon () const |
Get the time of the last received beacon. | |
Time | GetBeaconInterval () const |
Get the beacon interval. | |
IeBeaconTiming | GetBeaconTimingElement () const |
Get the beacon timing element. | |
Public Member Functions inherited from ns3::Object | |
Object () | |
Constructor. | |
~Object () override | |
Destructor. | |
void | AggregateObject (Ptr< Object > other) |
Aggregate two Objects together. | |
void | Dispose () |
Dispose of this Object. | |
AggregateIterator | GetAggregateIterator () const |
Get an iterator to the Objects aggregated to this one. | |
TypeId | GetInstanceTypeId () const override |
Get the most derived TypeId for this Object. | |
template<typename T > | |
Ptr< T > | GetObject () const |
Get a pointer to the requested aggregated Object. | |
template<> | |
Ptr< Object > | GetObject () const |
Specialization of () for objects of type ns3::Object. | |
template<typename T > | |
Ptr< T > | GetObject (TypeId tid) const |
Get a pointer to the requested aggregated Object by TypeId. | |
template<> | |
Ptr< Object > | GetObject (TypeId tid) const |
Specialization of (TypeId tid) for objects of type ns3::Object. | |
void | Initialize () |
Invoke DoInitialize on all Objects aggregated to this one. | |
bool | IsInitialized () const |
Check if the object has been initialized. | |
void | UnidirectionalAggregateObject (Ptr< Object > other) |
Aggregate an Object to another Object. | |
Public Member Functions inherited from ns3::SimpleRefCount< Object, ObjectBase, ObjectDeleter > | |
SimpleRefCount () | |
Default constructor. | |
SimpleRefCount (const SimpleRefCount &o) | |
Copy constructor. | |
uint32_t | GetReferenceCount () const |
Get the reference count of the object. | |
SimpleRefCount & | operator= (const SimpleRefCount &o) |
Assignment operator. | |
void | Ref () const |
Increment the reference count. | |
void | Unref () const |
Decrement the reference count. | |
Public Member Functions inherited from ns3::ObjectBase | |
virtual | ~ObjectBase () |
Virtual destructor. | |
void | GetAttribute (std::string name, AttributeValue &value, bool permissive=false) const |
Get the value of an attribute, raising fatal errors if unsuccessful. | |
bool | GetAttributeFailSafe (std::string name, AttributeValue &value) const |
Get the value of an attribute without raising errors. | |
void | SetAttribute (std::string name, const AttributeValue &value) |
Set a single attribute, raising fatal errors if unsuccessful. | |
bool | SetAttributeFailSafe (std::string name, const AttributeValue &value) |
Set a single attribute without raising errors. | |
bool | TraceConnect (std::string name, std::string context, const CallbackBase &cb) |
Connect a TraceSource to a Callback with a context. | |
bool | TraceConnectWithoutContext (std::string name, const CallbackBase &cb) |
Connect a TraceSource to a Callback without a context. | |
bool | TraceDisconnect (std::string name, std::string context, const CallbackBase &cb) |
Disconnect from a TraceSource a Callback previously connected with a context. | |
bool | TraceDisconnectWithoutContext (std::string name, const CallbackBase &cb) |
Disconnect from a TraceSource a Callback previously connected without a context. | |
Static Public Member Functions | |
static TypeId | GetTypeId () |
Get the type ID. | |
Static Public Member Functions inherited from ns3::Object | |
static TypeId | GetTypeId () |
Register this type. | |
Static Public Member Functions inherited from ns3::ObjectBase | |
static TypeId | GetTypeId () |
Get the type ID. | |
Static Public Attributes | |
static const char *const | PeerStateNames [6] |
Literal names of Mesh Peer Management states for use in log messages. | |
Private Types | |
enum | PeerEvent { CNCL , ACTOPN , CLS_ACPT , OPN_ACPT , OPN_RJCT , REQ_RJCT , CNF_ACPT , CNF_RJCT , TOR1 , TOR2 , TOC , TOH } |
Peer link events, see 802.11s draft 11B.3.3.2. More... | |
Private Member Functions | |
void | BeaconLoss () |
Several successive beacons were lost, close link. | |
bool | LinkIsEstab () const |
bool | LinkIsIdle () const |
void | SetMacPlugin (Ptr< PeerManagementProtocolMac > plugin) |
Set pointer to MAC-plugin, which is responsible for sending peer link management frames. | |
void | StateMachine (PeerEvent event, PmpReasonCode=REASON11S_RESERVED) |
State transition. | |
Link response to received management frames | |
| |
void | Close (uint16_t localLinkID, uint16_t peerLinkID, PmpReasonCode reason) |
Close link. | |
void | OpenAccept (uint16_t localLinkId, IeConfiguration conf, Mac48Address peerMp) |
Accept open link. | |
void | OpenReject (uint16_t localLinkId, IeConfiguration conf, Mac48Address peerMp, PmpReasonCode reason) |
Reject open link. | |
void | ConfirmAccept (uint16_t localLinkId, uint16_t peerLinkId, uint16_t peerAid, IeConfiguration conf, Mac48Address peerMp) |
Confirm accept. | |
void | ConfirmReject (uint16_t localLinkId, uint16_t peerLinkId, IeConfiguration conf, Mac48Address peerMp, PmpReasonCode reason) |
Confirm reject. | |
Event handlers | |
void | ClearRetryTimer () |
void | ClearConfirmTimer () |
Clear the confirm timer. | |
void | ClearHoldingTimer () |
Clear the holding timer. | |
void | SetHoldingTimer () |
Set the holding timer. | |
void | SetRetryTimer () |
Set the retry timer. | |
void | SetConfirmTimer () |
Set the confirm timer. | |
Work with management frames | |
void | SendPeerLinkClose (PmpReasonCode reasoncode) |
Send a peer link close. | |
void | SendPeerLinkOpen () |
Send a peer link open. | |
void | SendPeerLinkConfirm () |
Send a peer link confirm. | |
Timeout handlers | |
void | HoldingTimeout () |
void | RetryTimeout () |
Retry Timeout event handler. | |
void | ConfirmTimeout () |
Confirm Timeout event handler. | |
Private Attributes | |
uint16_t | m_assocId |
My association ID. | |
Time | m_beaconInterval |
Current beacon interval on corresponding interface. | |
IeBeaconTiming | m_beaconTiming |
Beacon timing element received from the peer. Needed by BCA. | |
IeConfiguration | m_configuration |
Mesh interface configuration. | |
uint32_t | m_interface |
The number of interface I am associated with. | |
Time | m_lastBeacon |
When last beacon was received. | |
SignalStatusCallback | m_linkStatusCallback |
How to report my status change. | |
uint16_t | m_localLinkId |
My ID of this link. | |
Ptr< PeerManagementProtocolMac > | m_macPlugin |
pointer to MAC plugin, which is responsible for peer management | |
uint16_t | m_packetFail |
How many successive packets were failed to transmit. | |
Mac48Address | m_peerAddress |
Peer address. | |
uint16_t | m_peerAssocId |
Assoc Id assigned to me by peer. | |
uint16_t | m_peerLinkId |
Peer ID of this link. | |
Mac48Address | m_peerMeshPointAddress |
Mesh point address, equal to peer address in case of single interface mesh point. | |
PeerState | m_state |
Current state. | |
Timers & counters used for internal state transitions | |
uint16_t | m_dot11MeshMaxRetries |
Maximum number of retries. | |
Time | m_dot11MeshRetryTimeout |
Retry timeout. | |
Time | m_dot11MeshHoldingTimeout |
Holding timeout. | |
Time | m_dot11MeshConfirmTimeout |
Confirm timeout. | |
EventId | m_retryTimer |
Retry timer. | |
EventId | m_holdingTimer |
Holding timer. | |
EventId | m_confirmTimer |
Confirm timer. | |
uint16_t | m_retryCounter |
Retry counter. | |
EventId | m_beaconLossTimer |
Beacon loss timer. | |
uint16_t | m_maxBeaconLoss |
Maximum number of lost beacons before link will be closed. | |
uint16_t | m_maxPacketFail |
Maximum number of failed packets before link will be closed. | |
Friends | |
class | PeerManagementProtocol |
allow PeerManagementProtocol class friend access | |
MLME | |
typedef Callback< void, uint32_t, Mac48Address, Mac48Address, PeerLink::PeerState, PeerLink::PeerState > | SignalStatusCallback |
Callback type for MLME-SignalPeerLinkStatus event. | |
void | MLMECancelPeerLink (PmpReasonCode reason) |
MLME-CancelPeerLink.request. | |
void | MLMEActivePeerLinkOpen () |
MLME-ActivePeerLinkOpen.request. | |
void | MLMEPeeringRequestReject () |
MLME-PeeringRequestReject. | |
void | MLMESetSignalStatusCallback (SignalStatusCallback cb) |
Set callback. | |
void | TransmissionSuccess () |
Reports about transmission success/failure. | |
void | TransmissionFailure () |
Callback type for MLME-SignalPeerLinkStatus event. | |
Additional Inherited Members | |
Protected Member Functions inherited from ns3::Object | |
Object (const Object &o) | |
Copy an Object. | |
virtual void | DoInitialize () |
Initialize() implementation. | |
virtual void | NotifyNewAggregate () |
Notify all Objects aggregated to this one of a new Object being aggregated. | |
Protected Member Functions inherited from ns3::ObjectBase | |
void | ConstructSelf (const AttributeConstructionList &attributes) |
Complete construction of ObjectBase; invoked by derived classes. | |
virtual void | NotifyConstructionCompleted () |
Notifier called once the ObjectBase is fully constructed. | |
Related Symbols inherited from ns3::ObjectBase | |
static TypeId | GetObjectIid () |
Ensure the TypeId for ObjectBase gets fully configured to anchor the inheritance tree properly. | |
Peer link model for 802.11s Peer Management protocol.
Definition at line 35 of file peer-link.h.
typedef Callback<void, uint32_t, Mac48Address, Mac48Address, PeerLink::PeerState, PeerLink::PeerState> ns3::dot11s::PeerLink::SignalStatusCallback |
Callback type for MLME-SignalPeerLinkStatus event.
Definition at line 167 of file peer-link.h.
|
private |
Peer link events, see 802.11s draft 11B.3.3.2.
Definition at line 186 of file peer-link.h.
Peer Link state:
Enumerator | |
---|---|
IDLE | |
OPN_SNT | |
CNF_RCVD | |
OPN_RCVD | |
ESTAB | |
HOLDING |
Definition at line 56 of file peer-link.h.
ns3::dot11s::PeerLink::PeerLink | ( | ) |
|
override |
Definition at line 93 of file peer-link.cc.
|
delete |
|
private |
Several successive beacons were lost, close link.
Definition at line 156 of file peer-link.cc.
References CNCL, NS_LOG_FUNCTION, and StateMachine().
Referenced by SetBeaconInformation().
|
private |
Clear the confirm timer.
Definition at line 735 of file peer-link.cc.
References ns3::EventId::Cancel(), and m_confirmTimer.
Referenced by StateMachine().
|
private |
Clear the holding timer.
Definition at line 741 of file peer-link.cc.
References ns3::EventId::Cancel(), and m_holdingTimer.
Referenced by StateMachine().
|
private |
Clear the retry timer
Definition at line 729 of file peer-link.cc.
References ns3::EventId::Cancel(), and m_retryTimer.
Referenced by StateMachine().
|
private |
Close link.
localLinkID | the local link ID |
peerLinkID | the peer link ID |
reason | the reason to close |
Definition at line 242 of file peer-link.cc.
References CLS_ACPT, m_localLinkId, m_peerLinkId, NS_LOG_FUNCTION, and StateMachine().
|
private |
Confirm accept.
localLinkId | the local link ID |
peerLinkId | the peer link ID |
peerAid | the peer AID |
conf | the IE configuration |
peerMp | the peer MP |
Definition at line 304 of file peer-link.cc.
References CNF_ACPT, ns3::Mac48Address::GetBroadcast(), m_configuration, m_localLinkId, m_peerAssocId, m_peerLinkId, m_peerMeshPointAddress, NS_ASSERT, NS_LOG_FUNCTION, and StateMachine().
|
private |
Confirm reject.
localLinkId | the local link ID |
peerLinkId | the peer link ID |
conf | the IE configuration |
peerMp | the peer MP |
reason | the reason to close |
Definition at line 340 of file peer-link.cc.
References CNF_RJCT, ns3::Mac48Address::GetBroadcast(), m_configuration, m_localLinkId, m_peerLinkId, m_peerMeshPointAddress, NS_ASSERT, NS_LOG_FUNCTION, and StateMachine().
|
private |
Confirm Timeout event handler.
Definition at line 830 of file peer-link.cc.
References StateMachine(), and TOC.
Referenced by SetConfirmTimer().
|
overridevirtual |
Destructor implementation.
This method is called by Dispose() or by the Object's destructor, whichever comes first.
Subclasses are expected to implement their real destruction code in an overridden 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 98 of file peer-link.cc.
References ns3::EventId::Cancel(), ns3::dot11s::IeBeaconTiming::ClearTimingElement(), m_beaconLossTimer, m_beaconTiming, m_confirmTimer, m_holdingTimer, m_retryTimer, and NS_LOG_FUNCTION.
Time ns3::dot11s::PeerLink::GetBeaconInterval | ( | ) | const |
Get the beacon interval.
Definition at line 212 of file peer-link.cc.
References m_beaconInterval.
IeBeaconTiming ns3::dot11s::PeerLink::GetBeaconTimingElement | ( | ) | const |
Get the beacon timing element.
Definition at line 218 of file peer-link.cc.
References m_beaconTiming.
Time ns3::dot11s::PeerLink::GetLastBeacon | ( | ) | const |
Get the time of the last received beacon.
Definition at line 206 of file peer-link.cc.
References m_lastBeacon.
uint16_t ns3::dot11s::PeerLink::GetLocalAid | ( | ) | const |
Get the local association ID.
Definition at line 194 of file peer-link.cc.
References m_assocId.
Mac48Address ns3::dot11s::PeerLink::GetPeerAddress | ( | ) | const |
Get the peer address.
Definition at line 188 of file peer-link.cc.
References m_peerAddress.
uint16_t ns3::dot11s::PeerLink::GetPeerAid | ( | ) | const |
Set the peer association ID.
Definition at line 200 of file peer-link.cc.
References m_peerAssocId.
|
static |
Get the type ID.
Definition at line 30 of file peer-link.cc.
References m_dot11MeshConfirmTimeout, m_dot11MeshHoldingTimeout, m_dot11MeshMaxRetries, m_dot11MeshRetryTimeout, m_maxBeaconLoss, m_maxPacketFail, ns3::MakeTimeAccessor(), ns3::MakeTimeChecker(), ns3::MakeUintegerAccessor(), ns3::MakeUintegerChecker(), ns3::MicroSeconds(), and ns3::TypeId::SetParent().
|
private |
Holding Timeout event handler
Definition at line 792 of file peer-link.cc.
References NS_LOG_FUNCTION, StateMachine(), and TOH.
Referenced by SetHoldingTimer().
|
private |
Definition at line 372 of file peer-link.cc.
|
private |
Definition at line 378 of file peer-link.cc.
void ns3::dot11s::PeerLink::MLMEActivePeerLinkOpen | ( | ) |
MLME-ActivePeerLinkOpen.request.
Definition at line 230 of file peer-link.cc.
References ACTOPN, and StateMachine().
void ns3::dot11s::PeerLink::MLMECancelPeerLink | ( | PmpReasonCode | reason | ) |
MLME-CancelPeerLink.request.
reason | the reason for the request |
Definition at line 224 of file peer-link.cc.
References CNCL, and StateMachine().
void ns3::dot11s::PeerLink::MLMEPeeringRequestReject | ( | ) |
MLME-PeeringRequestReject.
Definition at line 236 of file peer-link.cc.
References ns3::dot11s::REASON11S_PEERING_CANCELLED, REQ_RJCT, and StateMachine().
void ns3::dot11s::PeerLink::MLMESetSignalStatusCallback | ( | PeerLink::SignalStatusCallback | cb | ) |
Set callback.
cb | the callback function |
Definition at line 150 of file peer-link.cc.
References m_linkStatusCallback.
|
private |
Accept open link.
localLinkId | the local link ID |
conf | the IE configuration |
peerMp | the peer MP |
Definition at line 264 of file peer-link.cc.
References ns3::Mac48Address::GetBroadcast(), m_configuration, m_peerLinkId, m_peerMeshPointAddress, NS_ASSERT, NS_LOG_FUNCTION, OPN_ACPT, and StateMachine().
|
private |
Reject open link.
localLinkId | the local link ID |
conf | the IE configuration |
peerMp | the peer MP |
reason | the reason to close |
Definition at line 281 of file peer-link.cc.
References ns3::Mac48Address::GetBroadcast(), m_configuration, m_peerLinkId, m_peerMeshPointAddress, NS_ASSERT, NS_LOG_FUNCTION, OPN_RJCT, and StateMachine().
void ns3::dot11s::PeerLink::Report | ( | std::ostream & | os | ) | const |
Statistics.
os | the output stream |
Definition at line 836 of file peer-link.cc.
References ESTAB, ns3::dot11s::PeerManagementProtocolMac::GetAddress(), ns3::dot11s::PeerManagementProtocolMac::GetLinkMetric(), ns3::Time::GetSeconds(), m_assocId, m_lastBeacon, m_localLinkId, m_macPlugin, m_peerAddress, m_peerLinkId, m_peerMeshPointAddress, and m_state.
|
private |
Retry Timeout event handler.
Definition at line 806 of file peer-link.cc.
References m_dot11MeshMaxRetries, m_retryCounter, NS_LOG_FUNCTION, NS_LOG_LOGIC, StateMachine(), TOR1, and TOR2.
Referenced by SetRetryTimer().
|
private |
Send a peer link close.
reasoncode | reason for closing the line |
Definition at line 747 of file peer-link.cc.
References m_assocId, m_configuration, m_localLinkId, m_macPlugin, m_peerAddress, m_peerLinkId, m_peerMeshPointAddress, ns3::dot11s::PeerManagementProtocolMac::SendPeerLinkManagementFrame(), and ns3::dot11s::IePeerManagement::SetPeerClose().
Referenced by StateMachine().
|
private |
Send a peer link confirm.
Definition at line 772 of file peer-link.cc.
References m_assocId, m_configuration, m_localLinkId, m_macPlugin, m_peerAddress, m_peerLinkId, m_peerMeshPointAddress, ns3::dot11s::PeerManagementProtocolMac::SendPeerLinkManagementFrame(), and ns3::dot11s::IePeerManagement::SetPeerConfirm().
Referenced by StateMachine().
|
private |
Send a peer link open.
Definition at line 759 of file peer-link.cc.
References m_assocId, m_configuration, m_localLinkId, m_macPlugin, m_peerAddress, m_peerMeshPointAddress, NS_ASSERT, ns3::dot11s::PeerManagementProtocolMac::SendPeerLinkManagementFrame(), and ns3::dot11s::IePeerManagement::SetPeerOpen().
Referenced by StateMachine().
Process beacon received from peer.
lastBeacon | the last beacon |
BeaconInterval | the beacon interval |
Definition at line 139 of file peer-link.cc.
References BeaconLoss(), ns3::EventId::Cancel(), ns3::Time::GetMicroSeconds(), ns3::Time::GetSeconds(), m_beaconInterval, m_beaconLossTimer, m_lastBeacon, m_maxBeaconLoss, NS_ASSERT, ns3::Simulator::Schedule(), and ns3::Seconds().
void ns3::dot11s::PeerLink::SetBeaconTimingElement | ( | IeBeaconTiming | beaconTiming | ) |
Set the beacon timing element.
beaconTiming | the beacon timing element |
Definition at line 182 of file peer-link.cc.
References m_beaconTiming.
|
private |
Set the confirm timer.
Definition at line 822 of file peer-link.cc.
References ConfirmTimeout(), ns3::Time::GetMicroSeconds(), m_confirmTimer, m_dot11MeshConfirmTimeout, NS_ASSERT, and ns3::Simulator::Schedule().
Referenced by StateMachine().
|
private |
Set the holding timer.
Definition at line 784 of file peer-link.cc.
References ns3::Time::GetMicroSeconds(), HoldingTimeout(), m_dot11MeshHoldingTimeout, m_holdingTimer, NS_ASSERT, and ns3::Simulator::Schedule().
Referenced by StateMachine().
void ns3::dot11s::PeerLink::SetInterface | ( | uint32_t | interface | ) |
Set the interface.
interface | the interface |
Definition at line 121 of file peer-link.cc.
References m_interface.
void ns3::dot11s::PeerLink::SetLinkStatusCallback | ( | Callback< void, uint32_t, Mac48Address, bool > | cb | ) |
Method used to detect peer link changes.
cb | is a callback, which notifies, that on interface (uint32_t), peer link with address (Mac48Address) was opened (bool is true) or closed (bool is false) |
void ns3::dot11s::PeerLink::SetLocalAid | ( | uint16_t | aid | ) |
Set the local association ID.
aid | the local association ID |
Definition at line 133 of file peer-link.cc.
References m_assocId.
void ns3::dot11s::PeerLink::SetLocalLinkId | ( | uint16_t | id | ) |
Set the local link ID.
id | the local link ID |
Definition at line 127 of file peer-link.cc.
References m_localLinkId.
|
private |
Set pointer to MAC-plugin, which is responsible for sending peer link management frames.
plugin | the peer management protocol MAC |
Definition at line 384 of file peer-link.cc.
References m_macPlugin.
void ns3::dot11s::PeerLink::SetPeerAddress | ( | Mac48Address | macaddr | ) |
Set the peer address.
macaddr | the peer mac address |
Definition at line 109 of file peer-link.cc.
References m_peerAddress.
void ns3::dot11s::PeerLink::SetPeerMeshPointAddress | ( | Mac48Address | macaddr | ) |
Set the peer mesh point address.
macaddr | the peer mesh point address |
Definition at line 115 of file peer-link.cc.
References m_peerMeshPointAddress.
|
private |
Set the retry timer.
Definition at line 799 of file peer-link.cc.
References ns3::Time::GetMicroSeconds(), m_dot11MeshRetryTimeout, m_retryTimer, NS_ASSERT, RetryTimeout(), and ns3::Simulator::Schedule().
Referenced by StateMachine().
|
private |
State transition.
event | the event to update the state machine |
reasoncode | the reason for the state transition |
Definition at line 393 of file peer-link.cc.
References ACTOPN, ClearConfirmTimer(), ClearHoldingTimer(), ClearRetryTimer(), CLS_ACPT, CNCL, CNF_ACPT, CNF_RCVD, CNF_RJCT, ESTAB, ns3::Mac48Address::GetBroadcast(), HOLDING, IDLE, m_interface, m_linkStatusCallback, m_peerAddress, m_peerMeshPointAddress, m_retryCounter, m_state, NS_ASSERT, OPN_ACPT, OPN_RCVD, OPN_RJCT, OPN_SNT, ns3::dot11s::REASON11S_MESH_CLOSE_RCVD, ns3::dot11s::REASON11S_MESH_CONFIRM_TIMEOUT, ns3::dot11s::REASON11S_MESH_MAX_RETRIES, ns3::dot11s::REASON11S_PEERING_CANCELLED, REQ_RJCT, SendPeerLinkClose(), SendPeerLinkConfirm(), SendPeerLinkOpen(), SetConfirmTimer(), SetHoldingTimer(), SetRetryTimer(), TOC, TOH, TOR1, and TOR2.
Referenced by BeaconLoss(), Close(), ConfirmAccept(), ConfirmReject(), ConfirmTimeout(), HoldingTimeout(), MLMEActivePeerLinkOpen(), MLMECancelPeerLink(), MLMEPeeringRequestReject(), OpenAccept(), OpenReject(), RetryTimeout(), and TransmissionFailure().
void ns3::dot11s::PeerLink::TransmissionFailure | ( | ) |
Callback type for MLME-SignalPeerLinkStatus event.
Definition at line 169 of file peer-link.cc.
References CNCL, m_maxPacketFail, m_packetFail, NS_LOG_DEBUG, NS_LOG_FUNCTION, and StateMachine().
void ns3::dot11s::PeerLink::TransmissionSuccess | ( | ) |
Reports about transmission success/failure.
Definition at line 163 of file peer-link.cc.
References m_packetFail.
|
friend |
allow PeerManagementProtocol class friend access
Definition at line 39 of file peer-link.h.
|
private |
My association ID.
Definition at line 352 of file peer-link.h.
Referenced by GetLocalAid(), Report(), SendPeerLinkClose(), SendPeerLinkConfirm(), SendPeerLinkOpen(), and SetLocalAid().
|
private |
Current beacon interval on corresponding interface.
Definition at line 359 of file peer-link.h.
Referenced by GetBeaconInterval(), and SetBeaconInformation().
|
private |
Beacon loss timer.
Definition at line 386 of file peer-link.h.
Referenced by DoDispose(), and SetBeaconInformation().
|
private |
Beacon timing element received from the peer. Needed by BCA.
Definition at line 371 of file peer-link.h.
Referenced by DoDispose(), GetBeaconTimingElement(), and SetBeaconTimingElement().
|
private |
Mesh interface configuration.
Definition at line 369 of file peer-link.h.
Referenced by ConfirmAccept(), ConfirmReject(), OpenAccept(), OpenReject(), SendPeerLinkClose(), SendPeerLinkConfirm(), and SendPeerLinkOpen().
|
private |
Confirm timer.
Definition at line 384 of file peer-link.h.
Referenced by ClearConfirmTimer(), DoDispose(), and SetConfirmTimer().
|
private |
Confirm timeout.
Definition at line 380 of file peer-link.h.
Referenced by GetTypeId(), and SetConfirmTimer().
|
private |
Holding timeout.
Definition at line 379 of file peer-link.h.
Referenced by GetTypeId(), and SetHoldingTimer().
|
private |
Maximum number of retries.
Definition at line 377 of file peer-link.h.
Referenced by GetTypeId(), and RetryTimeout().
|
private |
Retry timeout.
Definition at line 378 of file peer-link.h.
Referenced by GetTypeId(), and SetRetryTimer().
|
private |
Holding timer.
Definition at line 383 of file peer-link.h.
Referenced by ClearHoldingTimer(), DoDispose(), and SetHoldingTimer().
|
private |
The number of interface I am associated with.
Definition at line 339 of file peer-link.h.
Referenced by SetInterface(), and StateMachine().
|
private |
When last beacon was received.
Definition at line 357 of file peer-link.h.
Referenced by GetLastBeacon(), Report(), and SetBeaconInformation().
|
private |
How to report my status change.
Definition at line 392 of file peer-link.h.
Referenced by MLMESetSignalStatusCallback(), and StateMachine().
|
private |
My ID of this link.
Definition at line 348 of file peer-link.h.
Referenced by Close(), ConfirmAccept(), ConfirmReject(), Report(), SendPeerLinkClose(), SendPeerLinkConfirm(), SendPeerLinkOpen(), and SetLocalLinkId().
|
private |
pointer to MAC plugin, which is responsible for peer management
Definition at line 341 of file peer-link.h.
Referenced by Report(), SendPeerLinkClose(), SendPeerLinkConfirm(), SendPeerLinkOpen(), and SetMacPlugin().
|
private |
Maximum number of lost beacons before link will be closed.
Definition at line 387 of file peer-link.h.
Referenced by GetTypeId(), and SetBeaconInformation().
|
private |
Maximum number of failed packets before link will be closed.
Definition at line 388 of file peer-link.h.
Referenced by GetTypeId(), and TransmissionFailure().
|
private |
How many successive packets were failed to transmit.
Definition at line 361 of file peer-link.h.
Referenced by TransmissionFailure(), and TransmissionSuccess().
|
private |
Peer address.
Definition at line 343 of file peer-link.h.
Referenced by GetPeerAddress(), Report(), SendPeerLinkClose(), SendPeerLinkConfirm(), SendPeerLinkOpen(), SetPeerAddress(), and StateMachine().
|
private |
Assoc Id assigned to me by peer.
Definition at line 354 of file peer-link.h.
Referenced by ConfirmAccept(), and GetPeerAid().
|
private |
Peer ID of this link.
Definition at line 350 of file peer-link.h.
Referenced by Close(), ConfirmAccept(), ConfirmReject(), OpenAccept(), OpenReject(), Report(), SendPeerLinkClose(), and SendPeerLinkConfirm().
|
private |
Mesh point address, equal to peer address in case of single interface mesh point.
Definition at line 346 of file peer-link.h.
Referenced by ConfirmAccept(), ConfirmReject(), OpenAccept(), OpenReject(), Report(), SendPeerLinkClose(), SendPeerLinkConfirm(), SendPeerLinkOpen(), SetPeerMeshPointAddress(), and StateMachine().
|
private |
Retry counter.
Definition at line 385 of file peer-link.h.
Referenced by RetryTimeout(), and StateMachine().
|
private |
Retry timer.
Definition at line 382 of file peer-link.h.
Referenced by ClearRetryTimer(), DoDispose(), and SetRetryTimer().
|
private |
Current state.
Definition at line 364 of file peer-link.h.
Referenced by LinkIsEstab(), LinkIsIdle(), Report(), and StateMachine().
|
static |
Literal names of Mesh Peer Management states for use in log messages.
Definition at line 69 of file peer-link.h.
Referenced by ns3::dot11s::PeerManagementProtocol::PeerLinkStatus().