aboutsummaryrefslogtreecommitdiffstats
path: root/library/RSL_Types.ttcn
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2018-03-11 22:29:31 +0100
committerHarald Welte <laforge@gnumonks.org>2018-03-12 16:04:54 +0100
commitea17b91e78836020cf3bacf94df02340d758d46a (patch)
tree82bd9b99d101cd81d7c33088e547af155907ae6a /library/RSL_Types.ttcn
parent21240e63f94fd3cb6da9c2e01b616bd5934957da (diff)
bts: Add TC_sacch_info_mod and TC_sacch_filling
Diffstat (limited to 'library/RSL_Types.ttcn')
-rw-r--r--library/RSL_Types.ttcn13
1 files changed, 13 insertions, 0 deletions
diff --git a/library/RSL_Types.ttcn b/library/RSL_Types.ttcn
index 3c2db736..f8b66c6d 100644
--- a/library/RSL_Types.ttcn
+++ b/library/RSL_Types.ttcn
@@ -1140,6 +1140,19 @@ template RSL_Message tr_RSL_MsgTypeDR(template RSL_MessageType msg_type) modifie
}
}
+ /* 8.6.20 BTS <- BSC */
+ template RSL_Message ts_RSL_SACCH_INF_MOD(RslChannelNr chan_nr, RSL_IE_SysinfoType si_type,
+ octetstring l3_info) := {
+ msg_disc := ts_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
+ msg_type := RSL_MT_SACCH_INFO_MODIFY,
+ ies := {
+ t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr}),
+ t_RSL_IE(RSL_IE_SYSINFO_TYPE, RSL_IE_Body:{sysinfo_type := si_type}),
+ t_RSL_IE(RSL_IE_L3_INFO, RSL_IE_Body:{l3_info := ts_RSL_L16V(l3_info)})
+ }
+ }
+
+
/* COMMON CHANNEL MANAGEMENT MESSAGES */
/* 8.5.1 BTS <- BSC */