/* 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 */ namespace PacketDotNet.LLDP { /// /// The IANA (Internet Assigned Numbers Authority) Address Family /// /// Source http://www.iana.org/assignments/address-family-numbers/ public enum AddressFamily { /// IP version 4 IPv4 = 1, /// IP version 6 IPv6 = 2, /// NSAP NSAP = 3, /// HDLC HDLC = 4, /// BBN 1822 BBN1822 = 5, /// 802 (includes all 802 media plus Ethernet "canonical format") Eth802 = 6, /// E.163 E163 = 7 // Add more if necessary // See remarks for more info on where // to find more info } }