GeoNetworking: Add ethertype 0x8947

Change-Id: I6205bf865827c1b6f26e07d8ad2fc97bc7efe28d
Reviewed-on: https://code.wireshark.org/review/31022
Petri-Dish: Anders Broman <a.broman58@gmail.com>
Tested-by: Petri Dish Buildbot
Reviewed-by: Anders Broman <a.broman58@gmail.com>
This commit is contained in:
Anders Broman 2018-12-12 15:50:42 +01:00 committed by Anders Broman
parent 320bc80371
commit 0b476966b9
2 changed files with 6 additions and 0 deletions

View File

@ -173,6 +173,7 @@ const value_string etype_vals[] = {
{ ETHERTYPE_HSR, "High-availability Seamless Redundancy (IEC62439 Part 3)" },
{ ETHERTYPE_BPQ, "AX.25" },
{ ETHERTYPE_CMD, "CiscoMetaData" },
{ ETHERTYPE_GEONETWORKING, "GeoNetworking" },
{ ETHERTYPE_XIP, "eXpressive Internet Protocol" },
{ ETHERTYPE_NWP, "Neighborhood Watch Protocol" },
{ ETHERTYPE_BLUECOM, "bluecom Protocol" },

View File

@ -47,6 +47,7 @@ extern "C" {
* Public Assignments" link on the page at
*
* http://standards.ieee.org/regauth/ethertype/index.shtml
* http://standards-oui.ieee.org/ethertype/eth.txt
*
* goes to, but it is redirected to the second of those - i.e., both
* of the IEEE URLs ultimately go to the same page.)
@ -569,6 +570,10 @@ extern "C" {
#define ETHERTYPE_ECP 0x8940 /* Edge Control Protocol */
#endif
#ifndef ETHERTYPE_GEONETWORKING
#define ETHERTYPE_GEONETWORKING 0x8947 /* GeoNetworking as defined in ETSI EN 302 636-4-1. */
#endif
#ifndef ETHERTYPE_NSH
#define ETHERTYPE_NSH 0x894F /* Network Service Header (draft-ietf-sfc-nsh-01.txt) */
#endif