added IEEE 802.1 Link Layer Discovery Protocol (LLDP) to the ethertypes, but sorry, no dissector (yet?)

svn path=/trunk/; revision=13460
This commit is contained in:
Ulf Lamping 2005-02-21 20:19:15 +00:00
parent 59bd32fe87
commit 76c32eb945
2 changed files with 5 additions and 0 deletions

View File

@ -93,6 +93,7 @@ const value_string etype_vals[] = {
{ETHERTYPE_PROFINET, "PROFInet" },
{ETHERTYPE_AOE, "ATA over Ethernet" },
{ETHERTYPE_IEEE802_OUI_EXTENDED, "IEEE 802a OUI Extended Ethertype" },
{ETHERTYPE_LLDP, "802.1 Link Layer Discovery Protocol (LLDP)" },
/*
* NDISWAN on Windows translates Ethernet frames from higher-level
* protocols into PPP frames to hand to the PPP driver, and translates

View File

@ -252,6 +252,10 @@
#define ETHERTYPE_RSN_PREAUTH 0x88c7 /* 802.11i Pre-Authentication */
#endif
#ifndef ETHERTYPE_LLDP
#define ETHERTYPE_LLDP 0x88cc /* IEEE 802.1 Link Layer Discovery Protocol (LLDP) */
#endif
#ifndef ETHERTYPE_LOOP
#define ETHERTYPE_LOOP 0x9000 /* used for layer 2 testing (do i see my own frames on the wire) */
#endif