lynxis lazus has submitted this change. ( https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/38915?usp=email )
Change subject: L3_Templates: GMM: Attach Req/RAU Req: add TLVs required for 4G -> 2G mobility tests ......................................................................
L3_Templates: GMM: Attach Req/RAU Req: add TLVs required for 4G -> 2G mobility tests
Change-Id: I0a37b75f6b1a522868cdbff43d99d4b953a4e952 --- M library/L3_Templates.ttcn 1 file changed, 18 insertions(+), 10 deletions(-)
Approvals: Jenkins Builder: Verified daniel: Looks good to me, approved pespin: Looks good to me, but someone else must approve
diff --git a/library/L3_Templates.ttcn b/library/L3_Templates.ttcn index f4de9a3..52b1f72 100644 --- a/library/L3_Templates.ttcn +++ b/library/L3_Templates.ttcn @@ -2461,7 +2461,11 @@ boolean combined := false, boolean follow_on_pending := false, template (omit) MobileStationClassmark2_TLV cm2_tlv := omit, template (omit) MobileStationClassmark3_TLV cm3_tlv := omit, - template (omit) NetworkResourceIdentifierContainerTLV nri := omit + template (omit) NetworkResourceIdentifierContainerTLV nri := omit, + template (omit) P_TMSISignatureTV p_tmsi_sig := omit, + template (omit) P_TMSI_TypeTV p_tmsi_type := omit, + template (omit) MobileIdentityTLV add_p_tmsi := omit, + template (omit) RoutingAreaIdentification2TLV add_rai := omit ) := { discriminator := '0000'B, /* overwritten */ tiOrSkip := { @@ -2478,7 +2482,7 @@ mobileIdentity := mi_lv, oldRoutingAreaID := old_ra, msRACap := ts_MS_RaCapa, - ptmsiSignature := omit, /* TODO */ + ptmsiSignature := p_tmsi_sig, reqGPRStimer := omit, tmsiStatus := omit, pC_LCSCapability := omit, @@ -2486,11 +2490,11 @@ mobileStationClassmark3 := cm3_tlv, supportedCodecs := omit, uENetworkCapability := omit, - additionalMobileIdentity := omit, - routingAreaIdentification2 := omit, + additionalMobileIdentity := add_p_tmsi, + routingAreaIdentification2 := add_rai, voiceDomainandUEsUsageSetting := omit, deviceProperties := omit, - p_TMSI_Type := omit, + p_TMSI_Type := p_tmsi_type, mS_NetworkFeatureSupport := omit, oldLocationAreaIdentification := omit, additionalUpdateType := omit, @@ -2612,7 +2616,11 @@ template (omit) MobileStationClassmark2_TLV cm2_tlv := omit, template (omit) MobileStationClassmark3_TLV cm3_tlv := omit, template (omit) OCT4 p_tmsi := omit, - template (omit) NetworkResourceIdentifierContainerTLV nri := omit + template (omit) NetworkResourceIdentifierContainerTLV nri := omit, + template (omit) P_TMSISignatureTV p_tmsi_sig := omit, + template (omit) P_TMSI_TypeTV p_tmsi_type := omit, + template (omit) MobileIdentityTLV add_p_tmsi := omit, + template (omit) RoutingAreaIdentification2TLV add_rai := omit ) := { discriminator := '0000'B, /* overwritten */ tiOrSkip := { @@ -2626,7 +2634,7 @@ gprsCKSN := { '111'B, '0'B }, oldRoutingAreaId := old_ra, msRACap := ts_MS_RaCapa, - oldPTMSISignature := omit, /* TODO */ + oldPTMSISignature := p_tmsi_sig, readyTimerValue := omit, drxParameter := omit, tmsiStatus := omit, @@ -2636,13 +2644,13 @@ pC_LCSCapability := omit, mBMS_ContextStatus := omit, uENetworkCapability := omit, - additionalMobileIdentity := omit, - oldRoutingAreaIdentification2 := omit, + additionalMobileIdentity := add_p_tmsi, + oldRoutingAreaIdentification2 := add_rai, mobileStationClassmark2 := cm2_tlv, mobileStationClassmark3 := cm3_tlv, supportedCodecs := omit, voiceDomainUEUsageSetting := omit, - p_TMSI_Type := omit, + p_TMSI_Type := p_tmsi_type, deviceProperties := omit, mS_NetworkFeatureSupport := omit, oldLocationAreaIdentification := omit,