VendorSpecificContentManager class. More...
#include "vendor-specific-action.h"
Public Member Functions | |
VendorSpecificContentManager (void) | |
virtual | ~VendorSpecificContentManager (void) |
void | DeregisterVscCallback (OrganizationIdentifier &oi) |
VscCallback | FindVscCallback (OrganizationIdentifier &oi) |
bool | IsVscCallbackRegistered (OrganizationIdentifier &oi) |
void | RegisterVscCallback (OrganizationIdentifier oi, VscCallback cb) |
Private Types | |
typedef std::map< OrganizationIdentifier, VscCallback > | VscCallbacks |
VSC callback typedef. More... | |
typedef std::map< OrganizationIdentifier, VscCallback >::iterator | VscCallbacksI |
VSC callback iterator typedef. More... | |
Private Attributes | |
VscCallbacks | m_callbacks |
VSC callbacks. More... | |
VendorSpecificContentManager class.
Definition at line 205 of file vendor-specific-action.h.
|
private |
VSC callback typedef.
Definition at line 236 of file vendor-specific-action.h.
|
private |
VSC callback iterator typedef.
Definition at line 238 of file vendor-specific-action.h.
ns3::VendorSpecificContentManager::VendorSpecificContentManager | ( | void | ) |
Definition at line 341 of file vendor-specific-action.cc.
References NS_LOG_FUNCTION.
|
virtual |
Definition at line 346 of file vendor-specific-action.cc.
References NS_LOG_FUNCTION.
void ns3::VendorSpecificContentManager::DeregisterVscCallback | ( | OrganizationIdentifier & | oi | ) |
oi | the specific OrganizationIdentifier when receive management information by VendorSpecificAction management frame. |
Definition at line 363 of file vendor-specific-action.cc.
References m_callbacks, and NS_LOG_FUNCTION.
Referenced by ns3::OcbWifiMac::RemoveReceiveVscCallback().
VscCallback ns3::VendorSpecificContentManager::FindVscCallback | ( | OrganizationIdentifier & | oi | ) |
oi | the specific OrganizationIdentifier when receive management information by VendorSpecificAction management frame. |
Definition at line 385 of file vendor-specific-action.cc.
References m_callbacks, NS_LOG_FUNCTION, and ns3::null_callback.
Referenced by ns3::OcbWifiMac::Receive().
bool ns3::VendorSpecificContentManager::IsVscCallbackRegistered | ( | OrganizationIdentifier & | oi | ) |
oi | the specific OrganizationIdentifier when receive management information by VendorSpecificAction management frame. |
Definition at line 370 of file vendor-specific-action.cc.
References m_callbacks, NS_LOG_FUNCTION, and ns3::OrganizationIdentifiers.
Referenced by RegisterVscCallback().
void ns3::VendorSpecificContentManager::RegisterVscCallback | ( | OrganizationIdentifier | oi, |
VscCallback | cb | ||
) |
oi | the specific OrganizationIdentifier when receive management information by VendorSpecificAction management frame. |
cb | the receive callback when oi related management packets are received |
Definition at line 352 of file vendor-specific-action.cc.
References IsVscCallbackRegistered(), m_callbacks, NS_LOG_FUNCTION, and NS_LOG_WARN.
Referenced by ns3::OcbWifiMac::AddReceiveVscCallback().
|
private |
VSC callbacks.
Definition at line 240 of file vendor-specific-action.h.
Referenced by DeregisterVscCallback(), FindVscCallback(), IsVscCallbackRegistered(), and RegisterVscCallback().