wifi: (fixes #2408) Fixes pcap issues with HT Minstrel (patch from Tommaso and Matias)

This commit is contained in:
Sébastien Deronne
2016-06-17 13:49:33 +02:00
parent 08ff4e78cf
commit e96f106db0
2 changed files with 2 additions and 1 deletions

View File

@@ -63,6 +63,7 @@ Bugs fixed
- Bug 2398 - add SNR tag to beacons and probe responses
- Bug 2402 - IPv4 Interface forwarding state is not honored
- Bug 2406 - Poor 802.11g performance in ad-hoc mode
- Bug 2408 - Simulation fails when 802.11n/ac is running with HT Minstrel and pcap enabled
- Bug 2414 - UdpSocket doesn't call NotifyConnectionFailed
- Bug 2419 - BsmApplication should use RecvFrom and not SocketAddressTag
- Bug 2420 - Remove code duplication between Wifi and Wave modules

View File

@@ -934,7 +934,7 @@ MinstrelHtWifiManager::DoGetDataTxVector (WifiRemoteStation *st)
}
return WifiTxVector (GetMcsSupported (station, mcsIndex), GetDefaultTxPowerLevel (), GetLongRetryCount (station),
group.sgi, group.streams, GetNess (station), group.chWidth, !station->m_isSampling, GetStbc (station));
group.sgi, group.streams, GetNess (station), group.chWidth, GetAggregation (station) && !station->m_isSampling, GetStbc (station));
}
}