Wireshark  4.3.0
The Wireshark network protocol analyzer
packet-msrp.h
1 /* packet-msrp.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 /* Info to save in MSRP conversation / packet-info. */
11 #define MAX_MSRP_SETUP_METHOD_SIZE 7
13 {
14  guchar setup_method_set;
15  gchar setup_method[MAX_MSRP_SETUP_METHOD_SIZE + 1];
16  guint32 setup_frame_number;
17 };
18 
19 
20 /* Add an MSRP conversation with the given details */
21 void msrp_add_address(packet_info *pinfo,
22  address *addr, int port,
23  const gchar *setup_method, guint32 setup_frame_number);
24 
Definition: address.h:56
Definition: packet-msrp.h:13
Definition: packet_info.h:44