aboutsummaryrefslogtreecommitdiffstats
path: root/library/BSSGP_Emulation.ttcn
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2019-05-03 00:41:41 +0200
committerHarald Welte <laforge@gnumonks.org>2019-05-10 22:39:02 +0000
commit8d1d893e7faec7fb5fd03e28da1f78f8e1169fac (patch)
treee73707502219109a4717db9b83dc1c763a2f211e /library/BSSGP_Emulation.ttcn
parent2fa771f90db1071ebb891ae430b82623fb1ac022 (diff)
BSSGP_Emulation: Fix transmission of MT L3 in LLC/BSSGP
it seems that some part of the code was commented out, breaking the path where a ConnHdlr is sending a L3 MT message. Change-Id: Ie652598292f2fbd2e1e0c4aa679ff0d68d78c88c
Diffstat (limited to 'library/BSSGP_Emulation.ttcn')
-rw-r--r--library/BSSGP_Emulation.ttcn2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/BSSGP_Emulation.ttcn b/library/BSSGP_Emulation.ttcn
index 89889268..9021f08a 100644
--- a/library/BSSGP_Emulation.ttcn
+++ b/library/BSSGP_Emulation.ttcn
@@ -586,7 +586,7 @@ altstep as_unblocked() runs on BSSGP_CT {
var BIT4 sapi := f_llc_sapi_by_l3_mt(l3_mt);
var integer n_u := f_llc_get_n_u_tx(ClientTable[idx].llc[bit2int(sapi)]);
var octetstring llc_enc := enc_PDU_LLC(valueof(ts_LLC_UI(l3_enc, sapi, '1'B, n_u)));
- //BSCP.send(f_BnsUdReq(ts_BSSGP_DL_UD(ClientTable[idx].tlli, ClientTable[idx].cell_id, llc_enc)), g_cfg.bvci);
+ BSCP.send(f_BnsUdReq(ts_BSSGP_DL_UD(ClientTable[idx].tlli, llc_enc), g_cfg.bvci));
}
[] BSSGP_SP.receive(PDU_LLC:?) -> value llc sender vc_conn {