A-bis/RSL: fix handling of MS/BS Power IEs in dissct_rsl_ipaccess_msg()

These IEs can optionally be included in ip.access specific MEASurement
PREPROCessing DeFauLT message.  Let's dissect them properly.
This commit is contained in:
Vadim Yanitskiy 2020-12-19 16:40:39 +01:00 committed by AndersBroman
parent f3dc269df6
commit 7332c91a7e
1 changed files with 9 additions and 0 deletions

View File

@ -3629,6 +3629,15 @@ dissct_rsl_ipaccess_msg(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, int
case RSL_IE_MS_POW:
dissect_rsl_ie_ms_pow(tvb, pinfo, tree, offset, FALSE);
break;
case RSL_IE_BS_POW:
dissect_rsl_ie_bs_power(tvb, pinfo, tree, offset, FALSE);
break;
case RSL_IE_MS_POWER_PARAM:
dissect_rsl_ie_ms_pow_params(tvb, pinfo, tree, offset, FALSE);
break;
case RSL_IE_BS_POWER_PARAM:
dissect_rsl_ie_bs_power_params(tvb, pinfo, tree, offset, FALSE);
break;
case RSL_IE_CAUSE:
dissect_rsl_ie_cause(tvb, pinfo, tree, offset, FALSE);
break;