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