diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-10 20:34:10 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-10 20:34:10 +0000 |
commit | e4ba6dbc3f1e76890b22773807ea37fe8fa2b1bc (patch) | |
tree | 68cb5ef9081156392f1dd62a00c6ccc1451b93df /epan/llcsaps.h | |
parent | Initial commit. (diff) | |
download | wireshark-e4ba6dbc3f1e76890b22773807ea37fe8fa2b1bc.tar.xz wireshark-e4ba6dbc3f1e76890b22773807ea37fe8fa2b1bc.zip |
Adding upstream version 4.2.2.upstream/4.2.2
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'epan/llcsaps.h')
-rw-r--r-- | epan/llcsaps.h | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/epan/llcsaps.h b/epan/llcsaps.h new file mode 100644 index 00000000..270e5fdf --- /dev/null +++ b/epan/llcsaps.h @@ -0,0 +1,51 @@ +/** @file + * + * Defines LLC SAP values. + * + * Wireshark - Network traffic analyzer + * By Gerald Combs <gerald@wireshark.org> + * Copyright 1998 Gerald Combs + * + * SPDX-License-Identifier: GPL-2.0-or-later + */ + +#ifndef __LLCSAPS_H__ +#define __LLCSAPS_H__ + +#define SAP_NULL 0x00 +#define SAP_LLC_SLMGMT 0x02 +#define SAP_SNA_PATHCTRL 0x04 +#define SAP_IP 0x06 +#define SAP_SNA1 0x08 +#define SAP_SNA2 0x0C +#define SAP_PROWAY_NM_INIT 0x0E +#define SAP_NETWARE1 0x10 +#define SAP_OSINL1 0x14 +#define SAP_TI 0x18 +#define SAP_OSINL2 0x20 +#define SAP_OSINL3 0x34 +#define SAP_SNA3 0x40 +#define SAP_BPDU 0x42 +#define SAP_RS511 0x4E +#define SAP_OSINL4 0x54 +#define SAP_X25 0x7E +#define SAP_XNS 0x80 +#define SAP_BACNET 0x82 +#define SAP_NESTAR 0x86 +#define SAP_PROWAY_ASLM 0x8E +#define SAP_ARP 0x98 +#define SAP_SNAP 0xAA +#define SAP_HPJD 0xB4 +#define SAP_VINES1 0xBA +#define SAP_VINES2 0xBC +#define SAP_SNA4 0xC8 +#define SAP_NETWARE2 0xE0 +#define SAP_NETBIOS 0xF0 +#define SAP_IBMNM 0xF4 +#define SAP_HPEXT 0xF8 +#define SAP_UB 0xFA +#define SAP_RPL 0xFC +#define SAP_OSINL5 0xFE +#define SAP_GLOBAL 0xFF + +#endif /* llcsaps.h */ |