dexter has uploaded this change for review.

View Change

NAS_Templates: add template for EPS update type

Related: OS#5760
Change-Id: I6ffac88cc1d3967dc8000e17a65cdba79a013cf7
---
M library/NAS_Templates.ttcn
1 file changed, 19 insertions(+), 0 deletions(-)

git pull ssh://gerrit.osmocom.org:29418/osmo-ttcn3-hacks refs/changes/69/34269/1
diff --git a/library/NAS_Templates.ttcn b/library/NAS_Templates.ttcn
index 97469d9..2e8be0e 100644
--- a/library/NAS_Templates.ttcn
+++ b/library/NAS_Templates.ttcn
@@ -316,6 +316,15 @@
}
}

+/* 9.9.3.14 EPS update type */
+const BIT3 c_EPS_UPD_TYPE_TA_UPD := '000'B;
+const BIT3 c_EPS_UPD_TYPE_COMB_TA_LA_UPD := '001'B;
+const BIT3 c_EPS_UPD_TYPE_COMB_TA_LA_UPD_IMSI_ATTACH := '010'B;
+const BIT3 c_EPS_UPD_TYPE_TA_UPD_PERIODIC := '011'B;
+template (value) EPS_UpdateTypeV ts_EPS_UpdateTypeV(BIT3 typeOfUpdate := c_EPS_UPD_TYPE_TA_UPD, BIT1 activeFlag := '0'B) := {
+ typeOfUpdate := typeOfUpdate,
+ activeFlag := activeFlag
+}

/* 8.2.3 Attach Reject */
template (value) PDU_NAS_EPS

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

Gerrit-Project: osmo-ttcn3-hacks
Gerrit-Branch: master
Gerrit-Change-Id: I6ffac88cc1d3967dc8000e17a65cdba79a013cf7
Gerrit-Change-Number: 34269
Gerrit-PatchSet: 1
Gerrit-Owner: dexter <pmaier@sysmocom.de>
Gerrit-MessageType: newchange