You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The UserPriority field of the VLAN tag header was being extracted with the bitmask 0x70, selecting the 2nd through 4th bits, instead of 0xe0, selecting the 1st through 3rd bits. The resulting value is right-shifted 5 bits, so the effect was to clear the high-order bit so a priority of 7 became 3, 5 became 1, etc.
This issue was discovered by a Npcap OEM licensee and was fixed in c267418.
The text was updated successfully, but these errors were encountered:
The
UserPriority
field of the VLAN tag header was being extracted with the bitmask0x70
, selecting the 2nd through 4th bits, instead of0xe0
, selecting the 1st through 3rd bits. The resulting value is right-shifted 5 bits, so the effect was to clear the high-order bit so a priority of 7 became 3, 5 became 1, etc.This issue was discovered by a Npcap OEM licensee and was fixed in c267418.
The text was updated successfully, but these errors were encountered: