Require to receive RANAP_CommonId after RANAP_SecurityModeComplete

The SGSN will send a CommonId after it has sent SecurityModeComplete
to support paging coordination in the RNC.

Change-Id: I82a05cab2aeea25eec699f726b2f5c4b3eef7560
This commit is contained in:
Alexander Couzens 2019-09-15 23:18:08 +02:00 committed by lynxis lazus
parent be76d9cd79
commit ed61ae81e2
1 changed files with 2 additions and 0 deletions

View File

@ -661,6 +661,7 @@ function f_gmm_auth (boolean umts_aka_challenge := false, boolean force_gsm_sres
key_sts := ?)) { key_sts := ?)) {
var IntegrityProtectionAlgorithm uia_chosen := 0; /* 0 = standard_UMTS_integrity_algorithm_UIA1 */ var IntegrityProtectionAlgorithm uia_chosen := 0; /* 0 = standard_UMTS_integrity_algorithm_UIA1 */
BSSAP.send(ts_RANAP_SecurityModeComplete(uia_chosen)); BSSAP.send(ts_RANAP_SecurityModeComplete(uia_chosen));
BSSAP.receive(tr_RANAP_CommonId(imsi_hex2oct(g_pars.imsi)))
} }
} }
} else { } else {
@ -2397,6 +2398,7 @@ friend function f_routing_area_update(RoutingAreaIdentificationV ra, integer ran
key_sts := ?)) { key_sts := ?)) {
var IntegrityProtectionAlgorithm uia_chosen := 0; /* 0 = standard_UMTS_integrity_algorithm_UIA1 */ var IntegrityProtectionAlgorithm uia_chosen := 0; /* 0 = standard_UMTS_integrity_algorithm_UIA1 */
BSSAP.send(ts_RANAP_SecurityModeComplete(uia_chosen)); BSSAP.send(ts_RANAP_SecurityModeComplete(uia_chosen));
BSSAP.receive(tr_RANAP_CommonId(imsi_hex2oct(g_pars.imsi)))
} }
[is_gb(ran_index)] BSSGP[ran_index].receive { repeat; } [is_gb(ran_index)] BSSGP[ran_index].receive { repeat; }
[is_iu(ran_index)] BSSAP.receive { repeat; } [is_iu(ran_index)] BSSAP.receive { repeat; }