/* 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 2010 Evan Plaice * Copyright 2010 Chris Morgan */ using System; namespace PacketDotNet.LLDP { /// /// The System Capabilities options /// [Flags] public enum CapabilityOptions { /// /// An Other Type of System /// Other = 0x01, /// A Repeater /// See IETF RFC 2108 Repeater = 0x02, /// A Bridge /// IETF RFC 2674 Bridge = 0x04, /// A WLAN Access Point /// IEEE 802.11 MIB WLanAP = 0x08, /// A Router /// IETF RFC 1812 Router = 0x10, /// A Telephone /// IETF RFC 2011 Telephone = 0x20, /// A DOCSIS Cable Device /// /// See IETF RFC 2669 /// See IETF RFC 2670 /// DocsisCableDevice = 0x40, /// A Station with no other capabilities /// IETF RFC 2011 StationOnly = 0x80, }; }