pespin has uploaded this change for review.

View Change

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(-)

git pull ssh://gerrit.osmocom.org:29418/osmo-ttcn3-hacks refs/changes/73/41073/1
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 change 41073. To unsubscribe, or for help writing mail filters, visit settings.

Gerrit-MessageType: newchange
Gerrit-Project: osmo-ttcn3-hacks
Gerrit-Branch: master
Gerrit-Change-Id: I7b0c028620ee1ff6b819cce95b39fb93a70d4106
Gerrit-Change-Number: 41073
Gerrit-PatchSet: 1
Gerrit-Owner: pespin <pespin@sysmocom.de>