aboutsummaryrefslogtreecommitdiffstats
path: root/include/osmocom/ranap
diff options
context:
space:
mode:
authorHarald Welte <laforge@osmocom.org>2024-03-15 18:34:37 +0100
committerHarald Welte <laforge@osmocom.org>2024-03-15 20:36:34 +0100
commit6c1857a113d63b7fac8bf46fb0c4d62f10c963ed (patch)
tree7e2a00fb3b42b1da42de32ccaa0196bbe54f7de9 /include/osmocom/ranap
parent50a0675cdeb98cc61c92b3e88d6b8d59b7c9447f (diff)
Add ranap_decode_rab_releaseditemies_fromlist()
This function is analogous to existing ranap_decode_*_itemies_fromlist() which we already had. This is needed in an upcoming osmo-hnbgw patchset where we need to parse the ReleasedItems in order to track RAB release progess in order to gather KPIs on RAB release. Change-Id: I328819c650fc6cefe735093a846277b4f03e6b29
Diffstat (limited to 'include/osmocom/ranap')
-rw-r--r--include/osmocom/ranap/ranap_common.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/osmocom/ranap/ranap_common.h b/include/osmocom/ranap/ranap_common.h
index 5727c0d..0da7b10 100644
--- a/include/osmocom/ranap/ranap_common.h
+++ b/include/osmocom/ranap/ranap_common.h
@@ -661,3 +661,8 @@ int ranap_decode_rab_releaseitemies_fromlist(
int ranap_decode_rab_setupormodifyitemfirst(
RANAP_RAB_SetupOrModifyItemFirst_t *raB_SetupOrModifyItemFirst,
ANY_t *any_p);
+
+/* There is no generated decoder available, this is a custom one */
+int ranap_decode_rab_releaseditemies_fromlist(
+ RANAP_RAB_ReleasedItemIEs_t *raB_ReleasedItemIEs,
+ ANY_t *any_p);