aboutsummaryrefslogtreecommitdiffstats
path: root/library
diff options
context:
space:
mode:
authorVadim Yanitskiy <vyanitskiy@sysmocom.de>2020-07-04 21:15:26 +0700
committerVadim Yanitskiy <vyanitskiy@sysmocom.de>2020-07-04 21:39:47 +0700
commit13c26f92797e609377458baa9a69457ba83fa214 (patch)
tree7c804dbc0a5542f30531bdd422fcf16917ac0ccc /library
parentb2a90db8755836a2ee79b7a7f76a195478d55b16 (diff)
BTS_Tests: move ts_RRM_GprsSuspReq to L3_Templates.ttcn
Diffstat (limited to 'library')
-rw-r--r--library/L3_Templates.ttcn20
1 files changed, 20 insertions, 0 deletions
diff --git a/library/L3_Templates.ttcn b/library/L3_Templates.ttcn
index 8b095728..1bfcec09 100644
--- a/library/L3_Templates.ttcn
+++ b/library/L3_Templates.ttcn
@@ -3241,6 +3241,26 @@ template PDU_ML3_NW_MS tr_ML3_MT_MM_Info := {
}
}
+template (value) PDU_ML3_MS_NW ts_RRM_GprsSuspReq(template (value) OCT4 tlli,
+ template (value) RoutingAreaIdentificationV rai,
+ template (value) OCT1 cause) := {
+ discriminator := '0000'B, /* overwritten */
+ tiOrSkip := {
+ skipIndicator := '0000'B
+ },
+ msgs := {
+ rrm := {
+ gPRS_suspensionRequest := {
+ messageType := '00110100'B,
+ tLLI := tlli,
+ routingAreaIdentification := rai,
+ suspensionCause := cause,
+ service_Support := omit
+ }
+ }
+ }
+}
+
}