network: (fixes #2948) Allow priority settings up to value 7
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -388,7 +388,7 @@ Socket::IsManualIpv6HopLimit (void) const
|
||||
void
|
||||
Socket::SetPriority (uint8_t priority)
|
||||
{
|
||||
if (priority <= 6)
|
||||
if (priority <= 7)
|
||||
{
|
||||
m_priority = priority;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user