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-bfcp.h
1
/* packet-bfcp.h
2
*
3
* Wireshark - Network traffic analyzer
4
* By Gerald Combs <gerald@wireshark.org>
5
* Copyright 1998 Gerald Combs
6
*
7
* SPDX-License-Identifier: GPL-2.0-or-later
8
*/
9
10
#ifndef __PACKET_BFCP_H__
11
#define __PACKET_BFCP_H__
12
13
/* Info to save in BFCP conversation / packet-info. */
14
#define MAX_BFCP_SETUP_METHOD_SIZE 7
15
struct
_bfcp_conversation_info
16
{
17
unsigned
char
setup_method_set;
18
char
setup_method[MAX_BFCP_SETUP_METHOD_SIZE + 1];
19
uint32_t setup_frame_number;
20
};
15
struct
_bfcp_conversation_info
{
…
};
21
22
23
/* Add an BFCP conversation with the given details */
24
void
bfcp_add_address(
packet_info
*pinfo, port_type ptype,
25
address
*addr,
int
port,
26
const
char
*setup_method, uint32_t setup_frame_number);
27
28
#endif
/* __PACKET_BFCP_H__ */
_address
Definition
address.h:56
_bfcp_conversation_info
Definition
packet-bfcp.h:16
_packet_info
Definition
packet_info.h:43
Generated by
1.9.8