etypes: Add ETHERTYPE_LINK_CTL

The definition was found in the Linux kernel source code.

Change-Id: I41d1435497042bc5905efc7e1af3941b9e8808e2
Ping-Bug: 12759
Reviewed-on: https://code.wireshark.org/review/17148
Petri-Dish: Stig Bjørlykke <stig@bjorlykke.org>
Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org>
Reviewed-by: Michael Mann <mmann78@netscape.net>
This commit is contained in:
Stig Bjørlykke 2016-08-18 19:15:53 +02:00 committed by Michael Mann
parent ea024e245e
commit 8accce8614
2 changed files with 5 additions and 0 deletions

View File

@ -78,6 +78,7 @@ const value_string etype_vals[] = {
{ ETHERTYPE_QNX_QNET6, "QNX 6 QNET protocol" },
{ ETHERTYPE_PPPOED, "PPPoE Discovery" },
{ ETHERTYPE_PPPOES, "PPPoE Session" },
{ ETHERTYPE_LINK_CTL, "HomePNA, wlan link local tunnel" },
{ ETHERTYPE_INTEL_ANS, "Intel ANS probe" },
{ ETHERTYPE_MS_NLB_HEARTBEAT, "MS NLB heartbeat" },
{ ETHERTYPE_JUMBO_LLC, "Jumbo LLC" },

View File

@ -308,6 +308,10 @@ extern "C" {
#define ETHERTYPE_PPPOES 0x8864 /* PPPoE Session Protocol */
#endif
#ifndef ETHERTYPE_LINK_CTL
#define ETHERTYPE_LINK_CTL 0x886C /* HPNA, wlan link local tunnel */
#endif
#ifndef ETHERTYPE_INTEL_ANS
#define ETHERTYPE_INTEL_ANS 0x886D /* Intel ANS (NIC teaming) http://www.intel.com/support/network/adapter/ans/probes.htm */
#endif