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-usbip.h
1
/* packet-usbip.h
2
* Definitions for USBIP dissection
3
* Copyright 2016, Christian Lamparter <chunkeey@googlemail.com>
4
*
5
* Wireshark - Network traffic analyzer
6
* By Gerald Combs <gerald@wireshark.org>
7
* Copyright 1998 Gerald Combs
8
*
9
* SPDX-License-Identifier: GPL-2.0-or-later
10
*/
11
12
#ifndef __PACKET_USBIP_H__
13
#define __PACKET_USBIP_H__
14
15
#define USBIP_HEADER_WITH_SETUP_LEN 0x28
16
#define USBIP_HEADER_LEN 0x30
17
18
#define USBIP_DIR_OUT 0x00
19
#define USBIP_DIR_IN 0x01
20
21
struct
usbip_header
{
22
uint8_t devid;
23
uint8_t busid;
24
uint32_t ep;
25
uint32_t dir;
26
};
21
struct
usbip_header
{
…
};
27
28
#endif
29
30
/*
31
* Editor modelines - https://www.wireshark.org/tools/modelines.html
32
*
33
* Local variables:
34
* c-basic-offset: 4
35
* tab-width: 8
36
* indent-tabs-mode: nil
37
* End:
38
*
39
* vi: set shiftwidth=4 tabstop=8 expandtab:
40
* :indentSize=4:tabSize=8:noTabs=true:
41
*/
usbip_header
Definition
packet-usbip.h:21
Generated by
1.9.8