aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-umts_mac.c
diff options
context:
space:
mode:
authorDarien Spencer <cusneud@mail.com>2017-06-18 22:54:55 -0700
committerAnders Broman <a.broman58@gmail.com>2017-06-19 23:50:23 +0000
commit0dada943c0671637c29dab86b82fd07cc48ca849 (patch)
tree7992727281611e9fe395e168a5ea4f91e2fac704 /epan/dissectors/packet-umts_mac.c
parentbef90e1493815a07e619c4cd0da6a7d65321c26e (diff)
RLC: Renamed U-RNTI to UE ID
The 'U-RNTI' field in RLC Info struct is both used in the code and shown in the UI as a generic unique 'UE ID' (not specificly U-RNTI, although sometimes it is) This commit renames the field to fit it's usage. Change-Id: Ib42b8ed5192fe60c9a164d6d225634be53708c66 Reviewed-on: https://code.wireshark.org/review/22225 Petri-Dish: Pascal Quantin <pascal.quantin@gmail.com> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Anders Broman <a.broman58@gmail.com>
Diffstat (limited to 'epan/dissectors/packet-umts_mac.c')
-rw-r--r--epan/dissectors/packet-umts_mac.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/epan/dissectors/packet-umts_mac.c b/epan/dissectors/packet-umts_mac.c
index d89b720aa9..711e2ed977 100644
--- a/epan/dissectors/packet-umts_mac.c
+++ b/epan/dissectors/packet-umts_mac.c
@@ -246,7 +246,7 @@ static guint16 tree_add_common_dcch_dtch_fields(tvbuff_t *tvb, packet_info *pinf
bitoffs += 2;
if (ueid_type == MAC_UEID_TYPE_URNTI) {
proto_tree_add_bits_item(tree, hf_mac_urnti, tvb, bitoffs, 32, ENC_BIG_ENDIAN);
- rlcinf->urnti[fpinf->cur_tb] = tvb_get_bits32(tvb, bitoffs, 32,ENC_BIG_ENDIAN);
+ rlcinf->ueid[fpinf->cur_tb] = tvb_get_bits32(tvb, bitoffs, 32,ENC_BIG_ENDIAN);
bitoffs += 32;
} else if (ueid_type == MAC_UEID_TYPE_CRNTI) {
proto_tree_add_bits_item(tree, hf_mac_crnti, tvb, 4, 16, ENC_BIG_ENDIAN);
@@ -292,7 +292,7 @@ static guint16 tree_add_common_dcch_dtch_fields(tvbuff_t *tvb, packet_info *pinf
/* Choosing between resolved U-RNTI (if found) or the C-RNTI as UE-ID for RLC */
if(fp_crnti_allocation_info != NULL) {
/* Using U-RNTI */
- rlcinf->urnti[fpinf->cur_tb] = fp_crnti_allocation_info->urnti;
+ rlcinf->ueid[fpinf->cur_tb] = fp_crnti_allocation_info->urnti;
/* Adding 'Resolved U-RNTI' related tree items*/
proto_item *temp;
proto_tree *resolved_urnti_tree;
@@ -304,7 +304,7 @@ static guint16 tree_add_common_dcch_dtch_fields(tvbuff_t *tvb, packet_info *pinf
}
else {
/* Using C-RNTI */
- rlcinf->urnti[fpinf->cur_tb] = c_rnti;
+ rlcinf->ueid[fpinf->cur_tb] = c_rnti;
}
bitoffs += 16;
}
@@ -1053,7 +1053,7 @@ static int dissect_mac_fdd_edch_type2(tvbuff_t *tvb, packet_info *pinfo, proto_t
PROTO_ITEM_SET_GENERATED(temp);
/*Set up information needed for MAC and lower layers*/
rlcinf->mode[sdu_no] = lchId_rlc_map[lchid]; /* Set RLC mode by lchid to RLC_MODE map in nbap.h */
- rlcinf->urnti[sdu_no] = p_fp_info->com_context_id;
+ rlcinf->ueid[sdu_no] = p_fp_info->com_context_id;
rlcinf->rbid[sdu_no] = lchid;
rlcinf->li_size[sdu_no] = RLC_LI_7BITS;
rlcinf->ciphered[sdu_no] = FALSE;