src/devices/wifi/wifi-net-device.cc
changeset 2961 2bcb3435483b
parent 2942 e37b7279e41e
child 2965 4b28e9740e3b
--- a/src/devices/wifi/wifi-net-device.cc	Mon Apr 14 16:06:08 2008 -0700
+++ b/src/devices/wifi/wifi-net-device.cc	Mon Apr 14 16:06:44 2008 -0700
@@ -38,29 +38,29 @@
 {
   static TypeId tid = TypeId ("ns3::WifiNetDevice")
     .SetParent<NetDevice> ()
-    .AddAttribute ("Channel", "XXX",
+    .AddAttribute ("Channel", "The channel attached to this device",
                    Pointer (),
                    MakePointerAccessor (&WifiNetDevice::DoGetChannel,
                                         &WifiNetDevice::SetChannel),
                    MakePointerChecker<WifiChannel> ())
-    .AddAttribute ("Phy", "XXX",
+    .AddAttribute ("Phy", "The PHY layer attached to this device.",
                    Pointer (),
                    MakePointerAccessor (&WifiNetDevice::GetPhy,
                                         &WifiNetDevice::SetPhy),
                    MakePointerChecker<WifiPhy> ())
-    .AddAttribute ("Mac", "XXX",
+    .AddAttribute ("Mac", "The MAC layer attached to this device.",
                    Pointer (),
                    MakePointerAccessor (&WifiNetDevice::GetMac,
                                         &WifiNetDevice::SetMac),
                    MakePointerChecker<WifiMac> ())
-    .AddAttribute ("RemoteStationManager", "XXX",
+    .AddAttribute ("RemoteStationManager", "The station manager attached to this device.",
                    Pointer (),
                    MakePointerAccessor (&WifiNetDevice::SetRemoteStationManager,
                                         &WifiNetDevice::GetRemoteStationManager),
                    MakePointerChecker<WifiRemoteStationManager> ())
-    .AddTraceSource ("Rx", "XXX",
+    .AddTraceSource ("Rx", "Received payload from the MAC layer.",
                      MakeTraceSourceAccessor (&WifiNetDevice::m_rxLogger))
-    .AddTraceSource ("Tx", "XXX",
+    .AddTraceSource ("Tx", "Send payload to the MAC layer.",
                      MakeTraceSourceAccessor (&WifiNetDevice::m_txLogger))
     ;
   return tid;