aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-pdcp-lte.c
diff options
context:
space:
mode:
authormartinm <martinm@f5534014-38df-0310-8fa8-9805f1628bb7>2010-06-18 07:07:55 +0000
committermartinm <martinm@f5534014-38df-0310-8fa8-9805f1628bb7>2010-06-18 07:07:55 +0000
commit83d3873cfe29b0984bc1a0176edee173265175b8 (patch)
treee532c910f8623a1248cdda71adcb3f55474bb382 /epan/dissectors/packet-pdcp-lte.c
parent9321e35ca5040148fab22cf98181e6154daed5d3 (diff)
Add new strings/dissector function for signalling RRC messages that will add
lte_rrc root to the protocol tree. Makes filtering on call signalling easier. TODO: same for other RRC entry points... git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@33251 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-pdcp-lte.c')
-rw-r--r--epan/dissectors/packet-pdcp-lte.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/epan/dissectors/packet-pdcp-lte.c b/epan/dissectors/packet-pdcp-lte.c
index 895aead419..c3c248130e 100644
--- a/epan/dissectors/packet-pdcp-lte.c
+++ b/epan/dissectors/packet-pdcp-lte.c
@@ -1327,10 +1327,10 @@ static dissector_handle_t lookup_rrc_dissector_handle(struct pdcp_lte_info *p_p
{
case Channel_CCCH:
if (p_pdcp_info->direction == DIRECTION_UPLINK) {
- rrc_handle = find_dissector("lte-rrc.ul.ccch");
+ rrc_handle = find_dissector("lte_rrc.ul_ccch");
}
else {
- rrc_handle = find_dissector("lte-rrc.dl.ccch");
+ rrc_handle = find_dissector("lte_rrc.dl_ccch");
}
break;
case Channel_PCCH:
@@ -1348,10 +1348,10 @@ static dissector_handle_t lookup_rrc_dissector_handle(struct pdcp_lte_info *p_p
break;
case Channel_DCCH:
if (p_pdcp_info->direction == DIRECTION_UPLINK) {
- rrc_handle = find_dissector("lte-rrc.ul.dcch");
+ rrc_handle = find_dissector("lte_rrc.ul_dcch");
}
else {
- rrc_handle = find_dissector("lte-rrc.dl.dcch");
+ rrc_handle = find_dissector("lte_rrc.dl_dcch");
}
break;