network: (fixes #2948) Allow priority settings up to value 7

This commit is contained in:
Sébastien Deronne
2018-08-07 12:45:56 +02:00
parent 5f82de724d
commit 16a2d19fee
2 changed files with 2 additions and 1 deletions

View File

@@ -47,6 +47,7 @@ Bugs fixed
- Bug 2926 - wifi: SSRC and SLRC mechanism not fully aligned to the standard
- Bug 2931 - Queue Disc drops the CE marked packets
- Bug 2941 - wifi: Order bit of Frame control field of WifiMacHeader not correctly set for some frames
- Bug 2948 - network: SetPriority does not support value 7
- Bug 2964 - wifi: IdealWifiManager keeps using the same MCS when all transmissions fail
Known issues

View File

@@ -388,7 +388,7 @@ Socket::IsManualIpv6HopLimit (void) const
void
Socket::SetPriority (uint8_t priority)
{
if (priority <= 6)
if (priority <= 7)
{
m_priority = priority;
}