dexter submitted this change.

View Change


Approvals: laforge: Looks good to me, but someone else must approve fixeria: Looks good to me, approved Jenkins Builder: Verified
PCUIF_Types: add record PCUIF_pch_dt

The record PCUIF_pch_dt, coresponds to struct gsm_pcu_if_pch_dt in
pcuif_proto.h. It will be needed when we introduce support for the TLLI
based confirmation of IMMEDIATE ASSIGNMENT messages that are sent via
the PCH.

Related: OS#5927
Change-Id: Ia705d3a6fe7adb863acd29e968f8dc6b2066a497
---
M library/PCUIF_Types.ttcn
1 file changed, 26 insertions(+), 0 deletions(-)

diff --git a/library/PCUIF_Types.ttcn b/library/PCUIF_Types.ttcn
index 654061c..5ddcc9e 100644
--- a/library/PCUIF_Types.ttcn
+++ b/library/PCUIF_Types.ttcn
@@ -312,6 +312,17 @@
other, OTHERWISE)"
};

+/* Record to send a (confirmed) IMMEDIATE ASSIGNMENT message via PCH. The record is sent by the PCU to the BTS as a
+ * data request (data_req) under SAPI PCU_IF_SAPI_PCH_DT. */
+type record PCUIF_pch_dt {
+ OCT4 tlli,
+ charstring imsi length(17),
+ octetstring data length(23)
+} with {
+ variant (tlli) "BYTEORDER(last)"
+ variant (imsi) "FIELDLENGTH(17), ALIGN(left)"
+ variant (data) "FIELDLENGTH(23), ALIGN(left)"
+};

type union PCUIF_MsgUnion {
PCUIF_data data_req,

To view, visit change 32606. To unsubscribe, or for help writing mail filters, visit settings.

Gerrit-Project: osmo-ttcn3-hacks
Gerrit-Branch: master
Gerrit-Change-Id: Ia705d3a6fe7adb863acd29e968f8dc6b2066a497
Gerrit-Change-Number: 32606
Gerrit-PatchSet: 5
Gerrit-Owner: dexter <pmaier@sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: dexter <pmaier@sysmocom.de>
Gerrit-Reviewer: fixeria <vyanitskiy@sysmocom.de>
Gerrit-Reviewer: laforge <laforge@osmocom.org>
Gerrit-CC: pespin <pespin@sysmocom.de>
Gerrit-MessageType: merged