Wireshark  2.9.0-477-g68ec514b
The Wireshark network protocol analyzer
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  * SPDX-License-Identifier: GPL-2.0-or-later
9  */
10 
11 #ifndef __LLCSAPS_H__
12 #define __LLCSAPS_H__
13 
14 #define SAP_NULL 0x00
15 #define SAP_LLC_SLMGMT 0x02
16 #define SAP_SNA_PATHCTRL 0x04
17 #define SAP_IP 0x06
18 #define SAP_SNA1 0x08
19 #define SAP_SNA2 0x0C
20 #define SAP_PROWAY_NM_INIT 0x0E
21 #define SAP_NETWARE1 0x10
22 #define SAP_OSINL1 0x14
23 #define SAP_TI 0x18
24 #define SAP_OSINL2 0x20
25 #define SAP_OSINL3 0x34
26 #define SAP_SNA3 0x40
27 #define SAP_BPDU 0x42
28 #define SAP_RS511 0x4E
29 #define SAP_OSINL4 0x54
30 #define SAP_X25 0x7E
31 #define SAP_XNS 0x80
32 #define SAP_BACNET 0x82
33 #define SAP_NESTAR 0x86
34 #define SAP_PROWAY_ASLM 0x8E
35 #define SAP_ARP 0x98
36 #define SAP_SNAP 0xAA
37 #define SAP_HPJD 0xB4
38 #define SAP_VINES1 0xBA
39 #define SAP_VINES2 0xBC
40 #define SAP_SNA4 0xC8
41 #define SAP_NETWARE2 0xE0
42 #define SAP_NETBIOS 0xF0
43 #define SAP_IBMNM 0xF4
44 #define SAP_HPEXT 0xF8
45 #define SAP_UB 0xFA
46 #define SAP_RPL 0xFC
47 #define SAP_OSINL5 0xFE
48 #define SAP_GLOBAL 0xFF
49 
50 #endif /* llcsaps.h */