/* This file is part of PacketDotNet PacketDotNet is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. PacketDotNet is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with PacketDotNet. If not, see . */ /* * Copyright 2013 Chris Morgan */ using System; namespace PacketDotNet { /// /// Ieee p8021 P priorities. /// http://en.wikipedia.org/wiki/IEEE_802.1p /// public enum IeeeP8021PPriorities : byte { /// /// Background /// Background_0 = 1, /// /// Best effort /// BestEffort_1 = 0, /// /// Excellent effort /// ExcellentEffort_2 = 2, /// /// Critical application /// CriticalApplications_3 = 3, /// /// Video, < 100ms latency and jitter /// Video_4 = 4, /// /// Voice, < 10ms latency and jitter /// Voice_5 = 5, /// /// Internetwork control /// InternetworkControl_6 = 6, /// /// Network control /// NetworkControl_7 = 7 } }