|
|
| 43 |
.SetParent<NetDevice> () |
43 |
.SetParent<NetDevice> () |
| 44 |
.AddConstructor<WifiNetDevice> () |
44 |
.AddConstructor<WifiNetDevice> () |
| 45 |
.AddAttribute ("Mtu", "The MAC-level Maximum Transmission Unit", |
45 |
.AddAttribute ("Mtu", "The MAC-level Maximum Transmission Unit", |
| 46 |
UintegerValue (MAX_MSDU_SIZE), |
46 |
UintegerValue (MAX_MSDU_SIZE - LLC_SNAP_HEADER_SIZE), |
| 47 |
MakeUintegerAccessor (&WifiNetDevice::SetMtu, |
47 |
MakeUintegerAccessor (&WifiNetDevice::SetMtu, |
| 48 |
&WifiNetDevice::GetMtu), |
48 |
&WifiNetDevice::GetMtu), |
| 49 |
MakeUintegerChecker<uint16_t> (1,MAX_MSDU_SIZE)) |
49 |
MakeUintegerChecker<uint16_t> (1,MAX_MSDU_SIZE)) |