Wireshark 4.5.0
The Wireshark network protocol analyzer
Loading...
Searching...
No Matches
packet-bfcp.h
1/* packet-bfcp.h
2 *
3 * Wireshark - Network traffic analyzer
4 * By Gerald Combs <[email protected]>
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
16{
17 unsigned char setup_method_set;
18 char setup_method[MAX_BFCP_SETUP_METHOD_SIZE + 1];
19 uint32_t setup_frame_number;
20};
21
22
23/* Add an BFCP conversation with the given details */
24void 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__ */
Definition address.h:56
Definition packet-bfcp.h:16
Definition packet_info.h:43