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 /* Info to save in MSRP conversation / packet-info. */
11 #define MAX_MSRP_SETUP_METHOD_SIZE 7
12 struct _msrp_conversation_info
14 unsigned char setup_method_set
;
15 char setup_method
[MAX_MSRP_SETUP_METHOD_SIZE
+ 1];
16 uint32_t setup_frame_number
;
20 /* Add an MSRP conversation with the given details */
21 void msrp_add_address(packet_info
*pinfo
,
22 address
*addr
, int port
,
23 const char *setup_method
, uint32_t setup_frame_number
);