From ade680078d3365f94d085f583b032c1a95fae3cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Deronne?= Date: Sun, 9 Oct 2016 11:03:24 +0200 Subject: [PATCH] wifi: Make clear when attributes are not supported --- src/wifi/model/wifi-mac.cc | 2 +- src/wifi/model/wifi-phy.cc | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/wifi/model/wifi-mac.cc b/src/wifi/model/wifi-mac.cc index d138ebf23..c00b009c4 100644 --- a/src/wifi/model/wifi-mac.cc +++ b/src/wifi/model/wifi-mac.cc @@ -191,7 +191,7 @@ WifiMac::GetTypeId (void) MakeTimeAccessor (&WifiMac::SetPifs, &WifiMac::GetPifs), MakeTimeChecker ()) - .AddAttribute ("Rifs", "The value of the RIFS constant.", + .AddAttribute ("Rifs", "The value of the RIFS constant (not supported yet!).", TimeValue (GetDefaultRifs ()), MakeTimeAccessor (&WifiMac::SetRifs, &WifiMac::GetRifs), diff --git a/src/wifi/model/wifi-phy.cc b/src/wifi/model/wifi-phy.cc index 1a2d31745..c78147165 100644 --- a/src/wifi/model/wifi-phy.cc +++ b/src/wifi/model/wifi-phy.cc @@ -265,13 +265,13 @@ WifiPhy::GetTypeId (void) &WifiPhy::SetGuardInterval), MakeBooleanChecker ()) .AddAttribute ("LdpcEnabled", - "Whether or not LDPC is enabled.", + "Whether or not LDPC is enabled (not supported yet!).", BooleanValue (false), MakeBooleanAccessor (&WifiPhy::GetLdpc, &WifiPhy::SetLdpc), MakeBooleanChecker ()) .AddAttribute ("STBCEnabled", - "Whether or not STBC is enabled.", + "Whether or not STBC is enabled (not supported yet!).", BooleanValue (false), MakeBooleanAccessor (&WifiPhy::GetStbc, &WifiPhy::SetStbc),