aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Couzens <lynxis@fe80.eu>2019-09-15 23:18:08 +0200
committerAlexander Couzens <lynxis@fe80.eu>2019-09-15 23:18:08 +0200
commit481759eca5fcab3627f9e9e4bf2f00fce60ca670 (patch)
tree7896dc05f83a19963d1d08fd353182e0b70fcbcf
parent657bc81ecba550f07ec56141331393ff49c17bc2 (diff)
Require to receive tr_RANAP_CommonId() after ts_RANAP_SecurityModeComplete()lynxis/sgsn_iu
The SGSN will send a CommonId after it has sent SecurityModeComplete in order to support paging coordination of the BSC Change-Id: I82a05cab2aeea25eec699f726b2f5c4b3eef7560
-rw-r--r--sgsn/SGSN_Tests.ttcn2
1 files changed, 2 insertions, 0 deletions
diff --git a/sgsn/SGSN_Tests.ttcn b/sgsn/SGSN_Tests.ttcn
index 6de9987e..2803f5ba 100644
--- a/sgsn/SGSN_Tests.ttcn
+++ b/sgsn/SGSN_Tests.ttcn
@@ -661,6 +661,7 @@ function f_gmm_auth (boolean umts_aka_challenge := false, boolean force_gsm_sres
key_sts := ?)) {
var IntegrityProtectionAlgorithm uia_chosen := 0; /* 0 = standard_UMTS_integrity_algorithm_UIA1 */
BSSAP.send(ts_RANAP_SecurityModeComplete(uia_chosen));
+ BSSAP.receive(tr_RANAP_CommonId(imsi_hex2oct(g_pars.imsi)))
}
}
} else {
@@ -2395,6 +2396,7 @@ friend function f_routing_area_update(RoutingAreaIdentificationV ra, integer bss
key_sts := ?)) {
var IntegrityProtectionAlgorithm uia_chosen := 0; /* 0 = standard_UMTS_integrity_algorithm_UIA1 */
BSSAP.send(ts_RANAP_SecurityModeComplete(uia_chosen));
+ BSSAP.receive(tr_RANAP_CommonId(imsi_hex2oct(g_pars.imsi)))
}
[is_gb(bssgp)] BSSGP[bssgp].receive { repeat; }
[is_iu(bssgp)] BSSAP.receive { repeat; }