aboutsummaryrefslogtreecommitdiffstats
path: root/bts
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2018-05-09 16:56:41 +0200
committerHarald Welte <laforge@gnumonks.org>2018-05-09 16:58:40 +0200
commit7aacbbf1e5a62c7902cf78399dc3d02fc204aac7 (patch)
tree8b6557e515c462210175f8193ce6673bc6cc01b6 /bts
parentdf936a2192cdc8ae4b9c2ef3eb00db40cb463703 (diff)
bts (RLL): DCCH/SAPI0 LAPDm without contention resolution is legal
The diffrence is whether we establish the LAPDm link * after RACH + IMM.ASS (we must include L3 payload for contention resolution required) * after assignment from one channel to another (we must not include L3 payload, i.e. no contention resolution) Change-Id: Ib67763856ffc5f5fd04a87f4192705777931c400 Related: OS#3252
Diffstat (limited to 'bts')
-rw-r--r--bts/BTS_Tests.ttcn6
1 files changed, 3 insertions, 3 deletions
diff --git a/bts/BTS_Tests.ttcn b/bts/BTS_Tests.ttcn
index 49e5fa14..c7064374 100644
--- a/bts/BTS_Tests.ttcn
+++ b/bts/BTS_Tests.ttcn
@@ -3108,10 +3108,10 @@ private function f_TC_rll_est_ind(charstring id) runs on ConnHdlr {
}
testcase TC_rll_est_ind() runs on test_CT {
var RllTestCases tcs := {
- /* normal SAPI0 establishment */
+ /* SAPI0 establishment (contention resolution) */
valueof(t_EITC(0, valueof(ts_RslLinkID_DCCH(0)), '01020304'O, true)),
- /* SAPI 0 requires contention resolution */
- valueof(t_EITC(0, valueof(ts_RslLinkID_DCCH(0)), ''O, false)),
+ /* normal SAPI0 establishment */
+ valueof(t_EITC(0, valueof(ts_RslLinkID_DCCH(0)), ''O, true)),
/* SAPI 3 doesn't support contention resolution */
valueof(t_EITC(3, valueof(ts_RslLinkID_DCCH(3)), '01020304'O, false)),
valueof(t_EITC(3, valueof(ts_RslLinkID_SACCH(3)), '01020304'O, false)),