summaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-umts_mac.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-umts_mac.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-umts_mac.h')
-rw-r--r--epan/dissectors/packet-umts_mac.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/epan/dissectors/packet-umts_mac.h b/epan/dissectors/packet-umts_mac.h
index 2746a80c..2cb81fe3 100644
--- a/epan/dissectors/packet-umts_mac.h
+++ b/epan/dissectors/packet-umts_mac.h
@@ -49,27 +49,27 @@ enum mac_content_type {
#define MAX_MAC_FRAMES 64
typedef struct umts_mac_info
{
- gboolean ctmux[MAX_MAC_FRAMES];
- guint8 content[MAX_MAC_FRAMES];
- guint8 lchid[MAX_MAC_FRAMES]; /*Makes displaying logical channel a lot easier*/
- guint8 macdflow_id[MAX_MAC_FRAMES]; /*Makes displaying logical channel a lot easier*/
+ bool ctmux[MAX_MAC_FRAMES];
+ uint8_t content[MAX_MAC_FRAMES];
+ uint8_t lchid[MAX_MAC_FRAMES]; /*Makes displaying logical channel a lot easier*/
+ uint8_t macdflow_id[MAX_MAC_FRAMES]; /*Makes displaying logical channel a lot easier*/
- gboolean fake_chid[MAX_MAC_FRAMES]; /*Indicate if the child ID is faked or not*/
- guint pdu_len; /*Length of MAC PDU, same for all PDUs in one FP frame*/
- guint8 trchid[MAX_MAC_FRAMES]; /*Makes displaying logical channel a lot easier*/
+ bool fake_chid[MAX_MAC_FRAMES]; /*Indicate if the child ID is faked or not*/
+ unsigned pdu_len; /*Length of MAC PDU, same for all PDUs in one FP frame*/
+ uint8_t trchid[MAX_MAC_FRAMES]; /*Makes displaying logical channel a lot easier*/
} umts_mac_info;
typedef struct
{
- guint number_of_mac_is_sdus;
- guint8 lchid[MAX_MAC_FRAMES];
- gint sdulength[MAX_MAC_FRAMES];
+ unsigned number_of_mac_is_sdus;
+ uint8_t lchid[MAX_MAC_FRAMES];
+ int sdulength[MAX_MAC_FRAMES];
} umts_mac_is_info;
enum enum_mac_tsn_size {
MAC_TSN_6BITS,
MAC_TSN_14BITS
};
-gint get_mac_tsn_size(void);
+int get_mac_tsn_size(void);
#endif