diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-09-19 04:14:53 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-09-19 04:14:53 +0000 |
commit | a86c5f7cae7ec9a3398300555a0b644689d946a1 (patch) | |
tree | 39fe4b107c71174fd1e8a8ceb9a4d2aa14116248 /epan/dissectors/asn1/rrc/packet-rrc-template.h | |
parent | Releasing progress-linux version 4.2.6-1~progress7.99u1. (diff) | |
download | wireshark-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/asn1/rrc/packet-rrc-template.h')
-rw-r--r-- | epan/dissectors/asn1/rrc/packet-rrc-template.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/epan/dissectors/asn1/rrc/packet-rrc-template.h b/epan/dissectors/asn1/rrc/packet-rrc-template.h index 2b38d273..68be7373 100644 --- a/epan/dissectors/asn1/rrc/packet-rrc-template.h +++ b/epan/dissectors/asn1/rrc/packet-rrc-template.h @@ -45,19 +45,19 @@ enum rrc_ue_state { typedef struct rrc_info { enum rrc_message_type msgtype[MAX_RRC_FRAMES]; - guint16 hrnti[MAX_RRC_FRAMES]; + uint16_t hrnti[MAX_RRC_FRAMES]; } rrc_info; /*Struct for storing ciphering information*/ typedef struct rrc_ciphering_info { int seq_no[31][2]; /*Indicates for each Rbid when ciphering starts - Indexers are [BearerID][Direction]*/ - GTree * /*guint32*/ start_cs; /*Start value for CS counter*/ - GTree * /*guint32*/ start_ps; /*Start value for PS counter*/ - gint32 ciphering_algorithm; /*Indicates which type of ciphering algorithm used*/ - gint32 integrity_algorithm; /*Indicates which type of integrity algorithm used*/ - guint32 setup_frame[2]; /*Store which frame contained this information - Indexer is [Direction]*/ - guint32 ps_conf_counters[31][2]; /*This should also be made for CS*/ + GTree * /*uint32_t*/ start_cs; /*Start value for CS counter*/ + GTree * /*uint32_t*/ start_ps; /*Start value for PS counter*/ + int32_t ciphering_algorithm; /*Indicates which type of ciphering algorithm used*/ + int32_t integrity_algorithm; /*Indicates which type of integrity algorithm used*/ + uint32_t setup_frame[2]; /*Store which frame contained this information - Indexer is [Direction]*/ + uint32_t ps_conf_counters[31][2]; /*This should also be made for CS*/ } rrc_ciphering_info; |