summaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-ziop.h
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-09-19 04:14:53 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-09-19 04:14:53 +0000
commita86c5f7cae7ec9a3398300555a0b644689d946a1 (patch)
tree39fe4b107c71174fd1e8a8ceb9a4d2aa14116248 /epan/dissectors/packet-ziop.h
parentReleasing progress-linux version 4.2.6-1~progress7.99u1. (diff)
downloadwireshark-a86c5f7cae7ec9a3398300555a0b644689d946a1.tar.xz
wireshark-a86c5f7cae7ec9a3398300555a0b644689d946a1.zip
Merging upstream version 4.4.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'epan/dissectors/packet-ziop.h')
-rw-r--r--epan/dissectors/packet-ziop.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/epan/dissectors/packet-ziop.h b/epan/dissectors/packet-ziop.h
index cf78db0d..4e6b57a3 100644
--- a/epan/dissectors/packet-ziop.h
+++ b/epan/dissectors/packet-ziop.h
@@ -25,23 +25,23 @@
#define ZIOP_MAGIC "ZIOP"
typedef struct ZIOPHeader_1_0 {
- guint8 magic[4];
- guint8 giop_version_major;
- guint8 giop_version_minor;
- guint8 flags;
- guint8 message_type;
- guint32 message_size;
+ uint8_t magic[4];
+ uint8_t giop_version_major;
+ uint8_t giop_version_minor;
+ uint8_t flags;
+ uint8_t message_type;
+ uint32_t message_size;
} ZIOPHeader;
typedef struct ZIOP_CompressionData {
- guint16 compressor_id;
- guint16 padding; /* to be skipped due to CDR rules */
- guint32 original_length;
+ uint16_t compressor_id;
+ uint16_t padding; /* to be skipped due to CDR rules */
+ uint32_t original_length;
/* Compression::Buffer data; */
} CompressionData;
-gboolean
+bool
dissect_ziop_heur (tvbuff_t * tvb, packet_info * pinfo, proto_tree * tree, void * data);
#endif /* PACKET_ZIOP_H */