daniel has submitted this change. (
https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/27261
)
Change subject: hnbgw: Fix encoding of AssignmentRequest with RABs to be released
......................................................................
hnbgw: Fix encoding of AssignmentRequest with RABs to be released
Also change the name to avoid mistaking it for a RABReleaseRequest
Change-Id: Ifb52ed9e5559e9566b0d7a02246fdf29ff0b6dce
---
M hnbgw/HNBGW_Tests.ttcn
M library/ranap/RANAP_Templates.ttcn
2 files changed, 7 insertions(+), 7 deletions(-)
Approvals:
pespin: Looks good to me, but someone else must approve
fixeria: Looks good to me, approved
Jenkins Builder: Verified
diff --git a/hnbgw/HNBGW_Tests.ttcn b/hnbgw/HNBGW_Tests.ttcn
index aea7de8..959fe87 100644
--- a/hnbgw/HNBGW_Tests.ttcn
+++ b/hnbgw/HNBGW_Tests.ttcn
@@ -901,7 +901,7 @@
f_create_rab(pars.mgcp_pars);
/* Send RAB Release */
- tx := valueof(ts_RANAP_RabReleaseReq(ts_RAB_RL(t_RAB_id(23),
ts_RanapCause_om_intervention)));
+ tx := valueof(ts_RANAP_RabAssignmentReqRabRel(ts_RAB_RL(t_RAB_id(23),
ts_RanapCause_om_intervention)));
BSSAP.send(tx);
T.start;
diff --git a/library/ranap/RANAP_Templates.ttcn b/library/ranap/RANAP_Templates.ttcn
index ca3e476..0aa1fad 100644
--- a/library/ranap/RANAP_Templates.ttcn
+++ b/library/ranap/RANAP_Templates.ttcn
@@ -1461,13 +1461,13 @@
} }
template (value) RANAP_PDU
-ts_RANAP_RabReleaseReq(template (value) RAB_ReleaseList rab_rl,
- template (omit) RAB_ReleaseRequest.protocolExtensions exts := omit) := {
+ts_RANAP_RabAssignmentReqRabRel(template (value) RAB_ReleaseList rab_rl,
+ template (omit) RAB_AssignmentRequest.protocolExtensions exts := omit) := {
initiatingMessage := {
procedureCode := id_RAB_Assignment,
criticality := reject,
value_ := {
- rAB_ReleaseRequest := {
+ rAB_AssignmentRequest := {
protocolIEs := {
{
id := id_RAB_ReleaseList,
@@ -1484,13 +1484,13 @@
}
template RANAP_PDU
-tr_RANAP_RabReleaseReq(template RAB_ReleaseList rab_rl,
- template RAB_ReleaseRequest.protocolExtensions exts := *) := {
+tr_RANAP_RabAssignmentReqRabRel(template RAB_ReleaseList rab_rl,
+ template RAB_AssignmentRequest.protocolExtensions exts := *) := {
initiatingMessage := {
procedureCode := id_RAB_Assignment,
criticality := reject,
value_ := {
- rAB_ReleaseRequest := {
+ rAB_AssignmentRequest := {
protocolIEs := {
{
id := id_RAB_ReleaseList,
--
To view, visit
https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/27261
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-ttcn3-hacks
Gerrit-Branch: master
Gerrit-Change-Id: Ifb52ed9e5559e9566b0d7a02246fdf29ff0b6dce
Gerrit-Change-Number: 27261
Gerrit-PatchSet: 2
Gerrit-Owner: daniel <dwillmann(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: daniel <dwillmann(a)sysmocom.de>
Gerrit-Reviewer: dexter <pmaier(a)sysmocom.de>
Gerrit-Reviewer: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-Reviewer: osmith <osmith(a)sysmocom.de>
Gerrit-Reviewer: pespin <pespin(a)sysmocom.de>
Gerrit-MessageType: merged