3 * Wireshark - Network traffic analyzer
4 * By Gerald Combs <gerald@wireshark.org>
5 * Copyright 1998 Gerald Combs
7 * SPDX-License-Identifier: GPL-2.0-or-later
10 #ifndef __PACKET_BFCP_H__
11 #define __PACKET_BFCP_H__
13 /* Info to save in BFCP conversation / packet-info. */
14 #define MAX_BFCP_SETUP_METHOD_SIZE 7
15 struct _bfcp_conversation_info
17 unsigned char setup_method_set
;
18 char setup_method
[MAX_BFCP_SETUP_METHOD_SIZE
+ 1];
19 uint32_t setup_frame_number
;
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
);
28 #endif /* __PACKET_BFCP_H__ */