aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2019-05-03 00:50:48 +0200
committerHarald Welte <laforge@gnumonks.org>2019-05-11 06:03:12 +0000
commit1e5a02d7667eba174db96cb56273d767083e87cd (patch)
tree7313642865b0536f01c82374e72b4f0415819ba3
parent6bee08757393ba48ff6b00960ef12f7e8863f5a4 (diff)
BSSGP_Emulation: More/improved comments
-rw-r--r--library/BSSGP_Emulation.ttcn4
1 files changed, 3 insertions, 1 deletions
diff --git a/library/BSSGP_Emulation.ttcn b/library/BSSGP_Emulation.ttcn
index c60868e2..22c2f09e 100644
--- a/library/BSSGP_Emulation.ttcn
+++ b/library/BSSGP_Emulation.ttcn
@@ -571,15 +571,17 @@ altstep as_unblocked() runs on BSSGP_CT {
}
+ /* ConnHdlr sends BSSGP on BVCI=0 port: forward it to BSSGP Codec Port */
[] BSSGP_SP_SIG.receive(PDU_BSSGP:?)-> value bs_pdu sender vc_conn {
BSCP.send(f_BnsUdReq(bs_pdu, 0));
}
- /* pass virtually any PDU from user to NS-UNITDATA PDU on network */
+ /* ConnHdlr sends BSSGP on BVCI=PTP port: forward it to BSSGP Codec Port */
[] BSSGP_SP.receive(PDU_BSSGP:?) -> value bs_pdu sender vc_conn {
BSCP.send(f_BnsUdReq(bs_pdu, g_cfg.bvci));
}
+ /* ConnHdlr sends L3: Encode and send as UL_UD / DL_UD */
[g_cfg.sgsn_role] BSSGP_SP.receive(PDU_L3_SGSN_MS:?) -> value l3_mt sender vc_conn {
var integer idx := f_tbl_idx_by_comp(vc_conn);
var octetstring l3_enc := enc_PDU_L3_SGSN_MS(l3_mt);