aboutsummaryrefslogtreecommitdiffstats
path: root/library/BSSMAP_Templates.ttcn
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2018-05-29 15:19:33 +0200
committerHarald Welte <laforge@gnumonks.org>2018-06-03 10:33:41 +0000
commitcc0b0149038eb4159bad511d171eedd3cf4b9a96 (patch)
tree9ff407429c9de87c8706f59b3803c5a8f6e592f8 /library/BSSMAP_Templates.ttcn
parent75b342600917f18eff86825cdd077b76788dafe5 (diff)
bsc: Add LCLS related test cases
This is an early WIP, we actually will need to establish two calls/legs before the BSC is able to locally correlate them. Related: OS#1602 Change-Id: Ie6d0b9c38027abf65c7c564fc79b889d013fa6a7
Diffstat (limited to 'library/BSSMAP_Templates.ttcn')
-rw-r--r--library/BSSMAP_Templates.ttcn12
1 files changed, 12 insertions, 0 deletions
diff --git a/library/BSSMAP_Templates.ttcn b/library/BSSMAP_Templates.ttcn
index ad90d66c..d92ea612 100644
--- a/library/BSSMAP_Templates.ttcn
+++ b/library/BSSMAP_Templates.ttcn
@@ -1136,6 +1136,18 @@ modifies tr_BSSAP_BSSMAP := {
}
}
+template PDU_BSSAP tr_BSSMAP_LclsNotificationSts(BIT4 sts)
+modifies tr_BSSAP_BSSMAP := {
+ pdu := {
+ bssmap := {
+ lCLS_Notification := {
+ messageType := '76'O,
+ lCLS_BSS_Status := tr_BSSMAP_IE_LclsSts(sts),
+ lCLS_BreakRequest := omit
+ }
+ }
+ }
+}