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-rdt.h
1
/* packet-rdt.h
2
*
3
* Routines for RDT dissection
4
* RDT = Real Data Transport
5
*
6
* Written by Martin Mathieson
7
*
8
* Wireshark - Network traffic analyzer
9
* By Gerald Combs <gerald@wireshark.org>
10
* Copyright 1998 Gerald Combs
11
*
12
* SPDX-License-Identifier: GPL-2.0-or-later
13
*/
14
15
/* Info to save in RDT conversation / packet-info */
16
#define MAX_RDT_SETUP_METHOD_SIZE 7
17
struct
_rdt_conversation_info
18
{
19
char
method[MAX_RDT_SETUP_METHOD_SIZE + 1];
20
uint32_t frame_number;
21
int
feature_level;
22
};
17
struct
_rdt_conversation_info
{
…
};
23
24
/* Add an RDT conversation with the given details */
25
void
rdt_add_address(
packet_info
*pinfo,
26
address
*addr,
int
port,
27
int
other_port,
28
const
char
*setup_method,
29
int
rdt_feature_level);
30
_address
Definition
address.h:56
_packet_info
Definition
packet_info.h:43
_rdt_conversation_info
Definition
packet-rdt.h:18
Generated by
1.9.8