1 /* arcnet_pids.h
2  * ARCNET protocol ID values
3  * Copyright 2001-2002, Peter Fales <ethereal@fales-lorenz.net>
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 #ifndef __ARCNET_PIDS_H__
13 #define __ARCNET_PIDS_H__
14 
15 #ifdef __cplusplus
16 extern "C" {
17 #endif /* __cplusplus */
18 
19 /* RFC 1051 */
20 #define ARCNET_PROTO_IP_1051	240
21 #define ARCNET_PROTO_ARP_1051	241
22 
23 /* RFC 1201 */
24 #define ARCNET_PROTO_IP_1201	212
25 #define ARCNET_PROTO_ARP_1201	213
26 #define ARCNET_PROTO_RARP_1201	214
27 
28 #define ARCNET_PROTO_IPX	250
29 #define ARCNET_PROTO_NOVELL_EC	236
30 
31 #define ARCNET_PROTO_IPv6	196	/* or so BSD's arcnet.h claims */
32 
33 /*
34  * Raw Ethernet over ARCNET - Linux's "if_arcnet.h" calls this
35  * "MS LanMan/WfWg 'NDIS' encapsuation".
36  */
37 #define ARCNET_PROTO_ETHERNET	232
38 
39 #define ARCNET_PROTO_DATAPOINT_BOOT	0
40 #define ARCNET_PROTO_DATAPOINT_MOUNT	1
41 #define ARCNET_PROTO_POWERLAN_BEACON	8
42 #define ARCNET_PROTO_POWERLAN_BEACON2	243
43 #define ARCNET_PROTO_LANSOFT	251
44 
45 #define ARCNET_PROTO_APPLETALK	221
46 #define ARCNET_PROTO_BANYAN	247	/* Banyan VINES */
47 
48 #define ARCNET_PROTO_DIAGNOSE	128	/* as per ANSI/ATA 878.1 */
49 
50 #define ARCNET_PROTO_BACNET	205
51 
52 #ifdef __cplusplus
53 }
54 #endif /* __cplusplus */
55 
56 #endif /* arcnet_pids.h */
57