summaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-msrp.h
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-09-19 04:14:33 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-09-19 04:14:33 +0000
commit9f153fbfec0fb9c9ce38e749a7c6f4a5e115d4e9 (patch)
tree2784370cda9bbf2da9114d70f05399c0b229d28c /epan/dissectors/packet-msrp.h
parentAdding debian version 4.2.6-1. (diff)
downloadwireshark-9f153fbfec0fb9c9ce38e749a7c6f4a5e115d4e9.tar.xz
wireshark-9f153fbfec0fb9c9ce38e749a7c6f4a5e115d4e9.zip
Merging upstream version 4.4.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'epan/dissectors/packet-msrp.h')
-rw-r--r--epan/dissectors/packet-msrp.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/epan/dissectors/packet-msrp.h b/epan/dissectors/packet-msrp.h
index 124ec40e..2099f9d3 100644
--- a/epan/dissectors/packet-msrp.h
+++ b/epan/dissectors/packet-msrp.h
@@ -11,14 +11,14 @@
#define MAX_MSRP_SETUP_METHOD_SIZE 7
struct _msrp_conversation_info
{
- guchar setup_method_set;
- gchar setup_method[MAX_MSRP_SETUP_METHOD_SIZE + 1];
- guint32 setup_frame_number;
+ unsigned char setup_method_set;
+ char setup_method[MAX_MSRP_SETUP_METHOD_SIZE + 1];
+ uint32_t setup_frame_number;
};
/* Add an MSRP conversation with the given details */
void msrp_add_address(packet_info *pinfo,
address *addr, int port,
- const gchar *setup_method, guint32 setup_frame_number);
+ const char *setup_method, uint32_t setup_frame_number);