Wireshark  2.9.0-477-g68ec514b
The Wireshark network protocol analyzer
packet-gre.h
1 /* packet-gre.h
2  * Routines and data exported by the dissection code for the
3  * Generic Routing Encapsulation (GRE) protocol
4  *
5  * Wireshark - Network traffic analyzer
6  * By Gerald Combs <gerald@wireshark.org>
7  * Copyright 1998 Gerald Combs
8  *
9  * SPDX-License-Identifier: GPL-2.0-or-later
10  */
11 
12 #define GRE_KEEPALIVE 0x0000
13 #define GRE_CISCO_CDP 0x2000
14 #define GRE_NHRP 0x2001
15 #define GRE_WCCP 0x883E
16 #define GRE_ERSPAN_88BE 0x88BE
17 #define GRE_ERSPAN_22EB 0x22EB
18 #define GRE_MIKROTIK_EOIP 0x6400
19 #define GRE_AIROHIVE 0xFEAE
20 /* ************************************************************************* */
21 /* Aruba GRE Encapsulation ID */
22 /* ************************************************************************* */
23 #define GRE_ARUBA_8200 0x8200
24 #define GRE_ARUBA_8210 0x8210
25 #define GRE_ARUBA_8220 0x8220
26 #define GRE_ARUBA_8230 0x8230
27 #define GRE_ARUBA_8240 0x8240
28 #define GRE_ARUBA_8250 0x8250
29 #define GRE_ARUBA_8260 0x8260
30 #define GRE_ARUBA_8270 0x8270
31 #define GRE_ARUBA_8280 0x8280
32 #define GRE_ARUBA_8290 0x8290
33 #define GRE_ARUBA_82A0 0x82A0
34 #define GRE_ARUBA_82B0 0x82B0
35 #define GRE_ARUBA_82C0 0x82C0
36 #define GRE_ARUBA_82D0 0x82D0
37 #define GRE_ARUBA_82E0 0x82E0
38 #define GRE_ARUBA_82F0 0x82F0
39 #define GRE_ARUBA_8300 0x8300
40 #define GRE_ARUBA_8310 0x8310
41 #define GRE_ARUBA_8320 0x8320
42 #define GRE_ARUBA_8330 0x8330
43 #define GRE_ARUBA_8340 0x8340
44 #define GRE_ARUBA_8350 0x8350
45 #define GRE_ARUBA_8360 0x8360
46 #define GRE_ARUBA_8370 0x8370
47 #define GRE_ARUBA_9000 0x9000
48 
49 extern const value_string gre_typevals[];
Definition: value_string.h:24