neels has uploaded this change for review. (
https://gerrit.osmocom.org/c/osmo-iuh/+/37254?usp=email )
Change subject: support Paging in cn_ranap_rx_initiating_msg_co
......................................................................
support Paging in cn_ranap_rx_initiating_msg_co
Allow decoding Paging messages.
So far not present because none of our RANAP implementations cares to
decode Paging.
osmo-gsm-shark uses this to show RANAP Paging.
Change-Id: Ie3e66eee1cc4553799e128580d39f3d40f79dcf5
---
M src/ranap_common_cn.c
1 file changed, 22 insertions(+), 0 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-iuh refs/changes/54/37254/1
diff --git a/src/ranap_common_cn.c b/src/ranap_common_cn.c
index 72698a4..3035501 100644
--- a/src/ranap_common_cn.c
+++ b/src/ranap_common_cn.c
@@ -86,6 +86,9 @@
case RANAP_ProcedureCode_id_LocationReport:
rc = ranap_decode_locationreporties(&message->msg.locationReportIEs,
&imsg->value);
break;
+ case RANAP_ProcedureCode_id_Paging:
+ rc = ranap_decode_pagingies(&message->msg.pagingIEs, &imsg->value);
+ break;
default:
LOGP(DRANAP, LOGL_INFO,
"Received RANAP Procedure %s (CO, IM) from RNC. Decode not
implemented\n",
@@ -144,6 +147,9 @@
case RANAP_ProcedureCode_id_LocationReport:
ranap_free_locationreporties(&message->msg.locationReportIEs);
break;
+ case RANAP_ProcedureCode_id_Paging:
+ ranap_free_pagingies(&message->msg.pagingIEs);
+ break;
default:
LOGP(DRANAP, LOGL_INFO,
"Freeing RANAP Procedure %s (CO, IM) from RNC not implemented\n",
--
To view, visit
https://gerrit.osmocom.org/c/osmo-iuh/+/37254?usp=email
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-iuh
Gerrit-Branch: master
Gerrit-Change-Id: Ie3e66eee1cc4553799e128580d39f3d40f79dcf5
Gerrit-Change-Number: 37254
Gerrit-PatchSet: 1
Gerrit-Owner: neels <nhofmeyr(a)sysmocom.de>
Gerrit-MessageType: newchange