epan/dissectors/pidl/samr/samr.cnf cnf_dissect_lsa_BinaryString => lsarpc_dissect_str...
[wireshark-sm.git] / epan / dissectors / packet-sll.h
blob0fa1e63cf00992ef96a225edf65718278bcf4424
1 /* packet-sll.h
3 * Wireshark - Network traffic analyzer
4 * By Gerald Combs <gerald@wireshark.org>
5 * Copyright 2001 Gerald Combs
7 * SPDX-License-Identifier: GPL-2.0-or-later
8 */
10 #ifndef __PACKET_SLL_H__
11 #define __PACKET_SLL_H__
13 #include "ws_symbol_export.h"
16 * The LINUX_SLL_ values for "sll_protocol".
17 * https://github.com/torvalds/linux/blob/master/include/uapi/linux/if_ether.h
19 #define LINUX_SLL_P_802_3 0x0001 /* Novell 802.3 frames without 802.2 LLC header */
20 #define LINUX_SLL_P_ETHERNET 0x0003 /* Ethernet */
21 #define LINUX_SLL_P_802_2 0x0004 /* 802.2 frames (not D/I/X Ethernet) */
22 #define LINUX_SLL_P_PPPHDLC 0x0007 /* PPP HDLC frames */
23 #define LINUX_SLL_P_CAN 0x000C /* Controller Area Network */
24 #define LINUX_SLL_P_CANFD 0x000D /* Controller Area Network flexible data rate */
25 #define LINUX_SLL_P_CANXL 0x000E /* Controller Area Network extended length */
26 #define LINUX_SLL_P_IRDA_LAP 0x0017 /* IrDA Link Access Protocol */
27 #define LINUX_SLL_P_ISI 0x00F5 /* Intelligent Service Interface */
28 #define LINUX_SLL_P_IEEE802154 0x00f6 /* 802.15.4 on monitor interface */
29 #define LINUX_SLL_P_MCTP 0x00fa /* Management Component Transport Protocol */
31 #endif