From Eliot:
[obnox/wireshark/wip.git] / epan / arcnet_pids.h
1 /* arcnet_pids.h
2  * ARCNET protocol ID values
3  * Copyright 2001-2002, Peter Fales <ethereal@fales-lorenz.net>
4  *
5  * $Id$
6  *
7  * Wireshark - Network traffic analyzer
8  * By Gerald Combs <gerald@wireshark.org>
9  * Copyright 1998 Gerald Combs
10  *
11  * This program is free software; you can redistribute it and/or
12  * modify it under the terms of the GNU General Public License
13  * as published by the Free Software Foundation; either version 2
14  * of the License, or (at your option) any later version.
15  * 
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  * 
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
24  */
25
26 #ifndef __ARCNET_PIDS_H__
27 #define __ARCNET_PIDS_H__
28
29 #ifdef __cplusplus
30 extern "C" {
31 #endif /* __cplusplus */
32
33 /* RFC 1051 */
34 #define ARCNET_PROTO_IP_1051    240
35 #define ARCNET_PROTO_ARP_1051   241
36
37 /* RFC 1201 */
38 #define ARCNET_PROTO_IP_1201    212
39 #define ARCNET_PROTO_ARP_1201   213
40 #define ARCNET_PROTO_RARP_1201  214
41
42 #define ARCNET_PROTO_IPX        250
43 #define ARCNET_PROTO_NOVELL_EC  236
44
45 #define ARCNET_PROTO_IPv6       196     /* or so BSD's arcnet.h claims */
46
47 /*
48  * Raw Ethernet over ARCNET - Linux's "if_arcnet.h" calls this
49  * "MS LanMan/WfWg 'NDIS' encapsuation".
50  */
51 #define ARCNET_PROTO_ETHERNET   232
52
53 #define ARCNET_PROTO_DATAPOINT_BOOT     0
54 #define ARCNET_PROTO_DATAPOINT_MOUNT    1
55 #define ARCNET_PROTO_POWERLAN_BEACON    8
56 #define ARCNET_PROTO_POWERLAN_BEACON2   243
57 #define ARCNET_PROTO_LANSOFT    251
58
59 #define ARCNET_PROTO_APPLETALK  221
60 #define ARCNET_PROTO_BANYAN     247     /* Banyan VINES */
61
62 #define ARCNET_PROTO_DIAGNOSE   128     /* as per ANSI/ATA 878.1 */
63
64 #define ARCNET_PROTO_BACNET     205
65
66 #ifdef __cplusplus
67 }
68 #endif /* __cplusplus */
69
70 #endif /* arcnet_pids.h */