aboutsummaryrefslogtreecommitdiffstats
path: root/msc
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2018-04-14 21:05:48 +0200
committerHarald Welte <laforge@gnumonks.org>2018-04-14 21:08:01 +0200
commite008eeaf6df7e8802f1ee69e7af1e485edfd6c8e (patch)
treeda6f1faf583dd9678cc87409ce25d489c59cbb8c /msc
parent98d428da11ee271b47d9178c8ca45e82dac0c0d9 (diff)
msc: Fix ti_flag mistake in f_mt_sms()
The L3 transaction-id in MT-SMS is allocated in the MSC, so any messages we expect from the MSC must carry c_TIF_ORIG. Change-Id: I6ea977a7662fdfc9c504f13ac5632ac20a04f522
Diffstat (limited to 'msc')
-rw-r--r--msc/BSC_ConnectionHandler.ttcn2
1 files changed, 1 insertions, 1 deletions
diff --git a/msc/BSC_ConnectionHandler.ttcn b/msc/BSC_ConnectionHandler.ttcn
index 733daabc..8c9b7239 100644
--- a/msc/BSC_ConnectionHandler.ttcn
+++ b/msc/BSC_ConnectionHandler.ttcn
@@ -880,7 +880,7 @@ runs on BSC_ConnHdlr {
BSSAP.send(ts_PDU_DTAP_MO(l3_mo, spars.dlci, true));
/* expect CP-ACK for CP-DATA(RP-ACK) just sent */
- l3_mt := tr_ML3_MT_SMS(spars.tid, c_TIF_REPL, tr_CP_ACK_MT);
+ l3_mt := tr_ML3_MT_SMS(spars.tid, c_TIF_ORIG, tr_CP_ACK_MT);
BSSAP.receive(tr_PDU_DTAP_MT(l3_mt, spars.dlci));
deactivate(d);