Wireshark
4.5.0
The Wireshark network protocol analyzer
Toggle main menu visibility
Main Page
Related Pages
Topics
Namespaces
Namespace List
Namespace Members
All
Variables
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
a
b
c
d
e
f
g
h
i
m
o
p
r
s
t
u
v
w
Variables
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerations
Files
File List
File Members
All
_
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
q
r
s
t
u
v
w
x
Functions
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
q
r
s
t
u
v
w
x
Variables
Typedefs
a
b
c
d
e
f
g
h
i
m
p
r
s
t
u
v
w
Enumerations
Enumerator
a
b
c
e
f
h
i
n
o
r
s
t
w
Macros
_
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
r
s
t
u
v
w
x
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Macros
Modules
Pages
Loading...
Searching...
No Matches
epan
dissectors
packet-sll.h
1
/* packet-sll.h
2
*
3
* Wireshark - Network traffic analyzer
4
* By Gerald Combs <gerald@wireshark.org>
5
* Copyright 2001 Gerald Combs
6
*
7
* SPDX-License-Identifier: GPL-2.0-or-later
8
*/
9
10
#ifndef __PACKET_SLL_H__
11
#define __PACKET_SLL_H__
12
13
#include "ws_symbol_export.h"
14
15
/*
16
* The LINUX_SLL_ values for "sll_protocol".
17
* https://github.com/torvalds/linux/blob/master/include/uapi/linux/if_ether.h
18
*/
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 */
30
31
#endif
Generated by
1.9.8