aboutsummaryrefslogtreecommitdiffstats
path: root/library/RSL_Emulation.ttcn
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2017-12-09 00:54:15 +0100
committerHarald Welte <laforge@gnumonks.org>2017-12-09 00:54:15 +0100
commit7ae019e1a0787a24fc3d02970751afccae9523b8 (patch)
tree826b00b557b098be751b06212ae1f7bf3dbf5c80 /library/RSL_Emulation.ttcn
parentf8a0bdaad5f8ff1dcce7034c7cb1c2bd31a7932d (diff)
IPA_Emulation: split t_ASP_RSL_UD in send and receive template
Diffstat (limited to 'library/RSL_Emulation.ttcn')
-rw-r--r--library/RSL_Emulation.ttcn8
1 files changed, 4 insertions, 4 deletions
diff --git a/library/RSL_Emulation.ttcn b/library/RSL_Emulation.ttcn
index c4439603..1db82b75 100644
--- a/library/RSL_Emulation.ttcn
+++ b/library/RSL_Emulation.ttcn
@@ -232,7 +232,7 @@ function main() runs on RSL_Emulation_CT {
while (true) {
alt {
[] IPA_PT.receive(ASP_IPA_Event:{up_down := ASP_IPA_EVENT_ID_ACK}) {
- IPA_PT.send(t_ASP_RSL_UD(IPAC_PROTO_RSL_TRX0,ts_RSL_RACH_PAGING_IND(23)));
+ IPA_PT.send(ts_ASP_RSL_UD(IPAC_PROTO_RSL_TRX0,ts_RSL_PAGING_LOAD_IND(23)));
}
[] IPA_PT.receive(tr_RSL(tr_RSL_IMM_ASSIGN)) -> value rx_rsl {
var GsmRrMessage rr;
@@ -292,7 +292,7 @@ function main() runs on RSL_Emulation_CT {
/* blindly acknowledge all channel activations */
[] IPA_PT.receive(tr_RSL(tr_RSL_MsgTypeD(RSL_MT_CHAN_ACTIV))) -> value rx_rsl {
var RslChannelNr chan_nr := rx_rsl.rsl.ies[0].body.chan_nr;
- IPA_PT.send(t_ASP_RSL_UD(rx_rsl.streamId, ts_RSL_CHAN_ACT_ACK(chan_nr, 23)));
+ IPA_PT.send(ts_ASP_RSL_UD(rx_rsl.streamId, ts_RSL_CHAN_ACT_ACK(chan_nr, 23)));
}
[] IPA_PT.receive(tr_RSL(tr_RSL_MsgTypeDR(?))) -> value rx_rsl {
@@ -314,14 +314,14 @@ function main() runs on RSL_Emulation_CT {
[] CLIENT_PT.receive(RSLDC_ChanRqd:?) -> value chan_rqd sender vc_conn {
/* Store the knowledge that this sender has requested a certain RQ+time */
f_cid_create(chan_rqd.ra, chan_rqd.fn, vc_conn);
- IPA_PT.send(t_ASP_RSL_UD(IPAC_PROTO_RSL_TRX0,
+ IPA_PT.send(ts_ASP_RSL_UD(IPAC_PROTO_RSL_TRX0,
ts_RSL_CHAN_RQD(chan_rqd.ra, chan_rqd.fn)));
}
[] CLIENT_PT.receive(tr_RSL_MsgType(?)) -> value rx_rsl_msg sender vc_conn {
/* forward to BSC */
cid := f_cid_by_comp_ref(vc_conn);
- IPA_PT.send(t_ASP_RSL_UD(ConnectionTable[cid].stream_id, rx_rsl_msg));
+ IPA_PT.send(ts_ASP_RSL_UD(ConnectionTable[cid].stream_id, rx_rsl_msg));
}
}