pespin has submitted this change. ( https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/41073?usp=email )
Change subject: mme: Set EPS Attach Type to valid value 'EPS Attach' ...................................................................... mme: Set EPS Attach Type to valid value 'EPS Attach' Previous value 0 is unused, see TS 3GPP TS 24.301 9.9.3.11. Change-Id: I7b0c028620ee1ff6b819cce95b39fb93a70d4106 --- M mme/ConnHdlr.ttcn 1 file changed, 2 insertions(+), 2 deletions(-) Approvals: fixeria: Looks good to me, approved Jenkins Builder: Verified diff --git a/mme/ConnHdlr.ttcn b/mme/ConnHdlr.ttcn index 8c4afed..d4a33ae 100644 --- a/mme/ConnHdlr.ttcn +++ b/mme/ConnHdlr.ttcn @@ -691,14 +691,14 @@ } } -function f_attach() runs on ConnHdlr { +function f_attach(BIT3 att_type := '001'B) runs on ConnHdlr { var template (value) EPS_MobileIdentityV mi := ts_NAS_MobileId_IMSI(g_pars.ue_pars.imsi); var template (value) PDU_NAS_EPS nas_esm, nas_emm; timer T := 5.0; nas_esm := ts_NAS_PdnConnReq(bearer_id := '0000'B, proc_tid := int2bit(1,8), pdn_type := NAS_PDN_T_IPv4, req_type := '001'B); - nas_emm := ts_NAS_AttachRequest(att_type := '000'B, kset_id := g_pars.kset_id, mobile_id := mi, + nas_emm := ts_NAS_AttachRequest(att_type := att_type, kset_id := g_pars.kset_id, mobile_id := mi, ue_net_cap := c_NAS_defaultUeNetCap, esm_enc := enc_PDU_NAS_EPS(valueof(nas_esm))); var template (value) S1AP_PDU tx; -- To view, visit https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/41073?usp=email To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings?usp=email Gerrit-MessageType: merged Gerrit-Project: osmo-ttcn3-hacks Gerrit-Branch: master Gerrit-Change-Id: I7b0c028620ee1ff6b819cce95b39fb93a70d4106 Gerrit-Change-Number: 41073 Gerrit-PatchSet: 2 Gerrit-Owner: pespin <pes...@sysmocom.de> Gerrit-Reviewer: Jenkins Builder Gerrit-Reviewer: fixeria <vyanits...@sysmocom.de> Gerrit-Reviewer: osmith <osm...@sysmocom.de> Gerrit-Reviewer: pespin <pes...@sysmocom.de>