wifi: (fixes #2319) increase BlockAckTimeout for 802.11n 2.4 Ghz
This commit is contained in:
@@ -121,6 +121,7 @@ Bugs fixed
|
||||
- Bug 2315 - Problem when BACK Request is part of an A-MPDU
|
||||
- Bug 2316 - MacLow shall use a single TXVECTOR for all MPDUs belonging to a same A-MPDU
|
||||
- Bug 2318 - MPDU Aggregation fails with TCP
|
||||
- Bug 2319 - BlockAckTimeout value is too low for 802.11n operating at 2.4 GHz
|
||||
- Bug 2321 - Wifi rate managers should not be triggered for each MPDU when A-MPDU is used
|
||||
|
||||
Known issues
|
||||
|
||||
@@ -390,7 +390,7 @@ WifiMac::Configure80211n_2_4Ghz (void)
|
||||
Configure80211g ();
|
||||
SetRifs (MicroSeconds (2));
|
||||
SetBasicBlockAckTimeout (GetSifs () + GetSlot () + GetDefaultBasicBlockAckDelay () + GetDefaultMaxPropagationDelay () * 2);
|
||||
SetCompressedBlockAckTimeout (GetSifs () + GetSlot () + GetDefaultCompressedBlockAckDelay () + GetDefaultMaxPropagationDelay () * 2);
|
||||
SetCompressedBlockAckTimeout (GetSifs () + GetSlot () + MicroSeconds (448) + GetDefaultMaxPropagationDelay () * 2);
|
||||
}
|
||||
void
|
||||
WifiMac::Configure80211n_5Ghz (void)
|
||||
|
||||
Reference in New Issue
Block a user