NAS EPS: upgrade dissector to v13.5.0
[metze/wireshark/wip.git] / epan / llcsaps.h
1 /* llcsaps.h
2  * Defines LLC SAP values.
3  *
4  * Wireshark - Network traffic analyzer
5  * By Gerald Combs <gerald@wireshark.org>
6  * Copyright 1998 Gerald Combs
7  *
8  * This program is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU General Public License
10  * as published by the Free Software Foundation; either version 2
11  * of the License, or (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21  */
22
23 #ifndef __LLCSAPS_H__
24 #define __LLCSAPS_H__
25
26 #define SAP_NULL                0x00
27 #define SAP_LLC_SLMGMT          0x02
28 #define SAP_SNA_PATHCTRL        0x04
29 #define SAP_IP                  0x06
30 #define SAP_SNA1                0x08
31 #define SAP_SNA2                0x0C
32 #define SAP_PROWAY_NM_INIT      0x0E
33 #define SAP_NETWARE1            0x10
34 #define SAP_OSINL1              0x14
35 #define SAP_TI                  0x18
36 #define SAP_OSINL2              0x20
37 #define SAP_OSINL3              0x34
38 #define SAP_SNA3                0x40
39 #define SAP_BPDU                0x42
40 #define SAP_RS511               0x4E
41 #define SAP_OSINL4              0x54
42 #define SAP_X25                 0x7E
43 #define SAP_XNS                 0x80
44 #define SAP_BACNET              0x82
45 #define SAP_NESTAR              0x86
46 #define SAP_PROWAY_ASLM         0x8E
47 #define SAP_ARP                 0x98
48 #define SAP_SNAP                0xAA
49 #define SAP_HPJD                0xB4
50 #define SAP_VINES1              0xBA
51 #define SAP_VINES2              0xBC
52 #define SAP_SNA4                0xC8
53 #define SAP_NETWARE2            0xE0
54 #define SAP_NETBIOS             0xF0
55 #define SAP_IBMNM               0xF4
56 #define SAP_HPEXT               0xF8
57 #define SAP_UB                  0xFA
58 #define SAP_RPL                 0xFC
59 #define SAP_OSINL5              0xFE
60 #define SAP_GLOBAL              0xFF
61
62 #endif /* llcsaps.h */