lynxis lazus has submitted this change. ( https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/38922?usp=email )
Change subject: SGSN: Remove mm context triplets ......................................................................
SGSN: Remove mm context triplets
Only triplets which hasn't been used should be included. The MME will only request and sent back a single set of tuples. There shouldn't any left overs.
Change-Id: I60a3331396cb9905ec9a4df9b1e65a3291a51058 --- M sgsn/SGSN_Tests.ttcn 1 file changed, 0 insertions(+), 10 deletions(-)
Approvals: Jenkins Builder: Verified pespin: Looks good to me, approved
diff --git a/sgsn/SGSN_Tests.ttcn b/sgsn/SGSN_Tests.ttcn index c854b72..c6c2c0a 100644 --- a/sgsn/SGSN_Tests.ttcn +++ b/sgsn/SGSN_Tests.ttcn @@ -3068,16 +3068,6 @@ var octetstring sgsn_addr := f_inet_addr(mp_sgsn_gtp_ip); ctx_rsp.sgsn_ContextResponse.sgsn_addr_controlPlane := tr_GsnAddr(sgsn_addr);
- /* Match MM Context */ - if (ispresent(g_pars.vec)) { - /* XXX: this is only valid for GERAN */ - var octetstring triplet := g_pars.vec.rand & g_pars.vec.sres & g_pars.vec.kc; - ctx_rsp.sgsn_ContextResponse.mm_Context := tr_MM_ContextGSM(kc := g_pars.vec.kc, - triplet := triplet); - /* TODO: 7.5.4 "The IMEISV shall, if available, be included in the MM Context". - * See also 3GPP TS 29.060, section 7.7.28 and Table 47A */ - } - /* TODO: match PDP Context */
T.start(2.0);