wifi: Make clear when attributes are not supported

This commit is contained in:
Sébastien Deronne
2016-10-09 11:03:24 +02:00
parent 9bf0116c22
commit ade680078d
2 changed files with 3 additions and 3 deletions

View File

@@ -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),

View File

@@ -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),