Wireshark  4.3.0
The Wireshark network protocol analyzer
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
16 {
17  guchar setup_method_set;
18  gchar setup_method[MAX_BFCP_SETUP_METHOD_SIZE + 1];
19  guint32 setup_frame_number;
20 };
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 gchar *setup_method, guint32 setup_frame_number);
27 
28 #endif /* __PACKET_BFCP_H__ */
Definition: address.h:56
Definition: packet-bfcp.h:16
Definition: packet_info.h:44