summaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-mbim.h
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-09-19 04:14:26 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-09-19 04:14:26 +0000
commitc4e8a3222648fcf22ca207f1815ebbf7cd144eeb (patch)
tree93d5c6aa93d9987680dd1adad5685e2ad698f223 /epan/dissectors/packet-mbim.h
parentAdding upstream version 4.2.6. (diff)
downloadwireshark-upstream.tar.xz
wireshark-upstream.zip
Adding upstream version 4.4.0.upstream/4.4.0upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'epan/dissectors/packet-mbim.h')
-rw-r--r--epan/dissectors/packet-mbim.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/epan/dissectors/packet-mbim.h b/epan/dissectors/packet-mbim.h
index f421b70c..5a7ad2f4 100644
--- a/epan/dissectors/packet-mbim.h
+++ b/epan/dissectors/packet-mbim.h
@@ -18,12 +18,12 @@
#define MBIM_COMMAND_SET 1
struct mbim_info {
- guint32 req_frame;
- guint32 resp_frame;
- guint32 cmd_type;
+ uint32_t req_frame;
+ uint32_t resp_frame;
+ uint32_t cmd_type;
};
-typedef void (*mbim_dissect_fct) (tvbuff_t *, packet_info *, proto_tree *, gint /* offset */, struct mbim_info *);
+typedef void (*mbim_dissect_fct) (tvbuff_t *, packet_info *, proto_tree *, int /* offset */, struct mbim_info *);
/* Structure listing the dissection function to be called for a given CID */
struct mbim_cid_dissect {
@@ -36,9 +36,9 @@ struct mbim_cid_dissect {
/* Structure handling the description of the UUID extension to be registered */
struct mbim_uuid_ext {
/* UUID value stored in network byte order */
- guint32 uuid[4];
+ uint32_t uuid[4];
/* UUID name to be displayed during dissection */
- const gchar *uuid_name;
+ const char *uuid_name;
/* value_string array containing the CID list for this UUID */
const value_string *uuid_cid_list;
/* Array of the dissection functions per CID. Pointers can be NULL when no dissection is expected */