Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(593)

Unified Diff: src/wifi/model/wifi-remote-station-manager.cc

Issue 333660043: 802.11 PCF implementation
Patch Set: Fix wifi-blockack example in previous patchset Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: src/wifi/model/wifi-remote-station-manager.cc
===================================================================
--- a/src/wifi/model/wifi-remote-station-manager.cc
+++ b/src/wifi/model/wifi-remote-station-manager.cc
@@ -402,6 +402,7 @@
m_htSupported (false),
m_vhtSupported (false),
m_heSupported (false),
+ m_pcfSupported (false),
m_useNonErpProtection (false),
m_useNonHtProtection (false),
m_useGreenfieldProtection (false),
@@ -596,6 +597,18 @@
return m_heSupported;
}
+void
+WifiRemoteStationManager::SetPcfSupported (bool enable)
+{
+ m_pcfSupported = enable;
+}
+
+bool
+WifiRemoteStationManager::HasPcfSupported (void) const
+{
+ return m_pcfSupported;
+}
+
uint32_t
WifiRemoteStationManager::GetMaxSsrc (void) const
{

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b