aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Mathieson <martin.r.mathieson@googlemail.com>2018-03-22 21:16:17 +0000
committerMartin Mathieson <martin.r.mathieson@googlemail.com>2018-03-22 22:27:08 +0000
commit380396e5e6a1d0fce4e4a88ded88242bb46cef74 (patch)
treebc73e653605aecbb4dadbd59f05e19508dd1961f
parent1ea82e4ff7a81a3719cc8d6b4cd95fada3abb79b (diff)
mac-nr: Minor changes
Minor display issues, and show in context tree 2 recently-introduced fields. Change-Id: I14ecde0059d17abd17767d4d0c34ba093fa1987f Reviewed-on: https://code.wireshark.org/review/26596 Petri-Dish: Martin Mathieson <martin.r.mathieson@googlemail.com> Reviewed-by: Pascal Quantin <pascal.quantin@gmail.com> Reviewed-by: Martin Mathieson <martin.r.mathieson@googlemail.com>
-rw-r--r--epan/dissectors/packet-mac-nr.c30
1 files changed, 28 insertions, 2 deletions
diff --git a/epan/dissectors/packet-mac-nr.c b/epan/dissectors/packet-mac-nr.c
index daea504320..497120d4bb 100644
--- a/epan/dissectors/packet-mac-nr.c
+++ b/epan/dissectors/packet-mac-nr.c
@@ -38,6 +38,8 @@ static int hf_mac_nr_context_rnti = -1;
static int hf_mac_nr_context_rnti_type = -1;
static int hf_mac_nr_context_ueid = -1;
static int hf_mac_nr_context_bcch_transport_channel = -1;
+static int hf_mac_nr_context_phr_type2_pcell = -1;
+static int hf_mac_nr_context_phr_type2_othercell = -1;
static int hf_mac_nr_subheader = -1;
@@ -1133,7 +1135,7 @@ static void dissect_ulsch_or_dlsch(tvbuff_t *tvb, packet_info *pinfo _U_, proto_
tvb, offset, 1, ENC_BIG_ENDIAN, &bs);
write_pdu_label_and_info(pdu_ti, subheader_ti, pinfo,
"(Short %sBSR LCG ID=%u BS=%u) ",
- lcid == SHORT_BSR_LCID ? " " : "Truncated ", lcg_id, bs);
+ lcid == SHORT_BSR_LCID ? "" : "Truncated ", lcg_id, bs);
offset++;
}
break;
@@ -1181,9 +1183,11 @@ static void dissect_ulsch_or_dlsch(tvbuff_t *tvb, packet_info *pinfo _U_, proto_
}
break;
case PADDING_LCID:
- write_pdu_label_and_info_literal(pdu_ti, subheader_ti, pinfo, "(Padding) ");
/* The rest of the PDU is padding */
proto_tree_add_item(subheader_tree, hf_mac_nr_padding, tvb, offset, -1, ENC_NA);
+ write_pdu_label_and_info(pdu_ti, subheader_ti, pinfo, "(Padding %u bytes) ",
+ tvb_reported_length_remaining(tvb, offset));
+ /* Move to the end of the frame */
offset = tvb_captured_length(tvb);
break;
}
@@ -1406,6 +1410,16 @@ static int dissect_mac_nr(tvbuff_t *tvb, packet_info *pinfo,
PROTO_ITEM_SET_GENERATED(ti);
}
+ /* Type 2 PCell */
+ ti = proto_tree_add_boolean(context_tree, hf_mac_nr_context_phr_type2_pcell,
+ tvb, 0, 0, p_mac_nr_info->phr_type2_pcell);
+ PROTO_ITEM_SET_GENERATED(ti);
+
+ /* Type 2 other */
+ ti = proto_tree_add_boolean(context_tree, hf_mac_nr_context_phr_type2_othercell,
+ tvb, 0, 0, p_mac_nr_info->phr_type2_othercell);
+ PROTO_ITEM_SET_GENERATED(ti);
+
/* Dissect the MAC PDU itself. Format depends upon RNTI type. */
switch (p_mac_nr_info->rntiType) {
@@ -1595,6 +1609,18 @@ void proto_register_mac_nr(void)
"Transport channel BCCH data was carried on", HFILL
}
},
+ { &hf_mac_nr_context_phr_type2_pcell,
+ { "PHR Type2 PCell PHR",
+ "mac-nr.type2-pcell", FT_BOOLEAN, BASE_NONE, NULL, 0x0,
+ NULL, HFILL
+ }
+ },
+ { &hf_mac_nr_context_phr_type2_othercell,
+ { "PHR Type2 other cell PHR",
+ "mac-nr.type2-other-cell", FT_BOOLEAN, BASE_NONE, NULL, 0x0,
+ NULL, HFILL
+ }
+ },
{ &hf_mac_nr_subheader,
{ "Subheader",