dexter has submitted this change. ( https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/43646?usp=email )
Change subject: RSPDefinitions_Templates: Use consitent transactionId values ......................................................................
RSPDefinitions_Templates: Use consitent transactionId values
Some templates use different transactionId values. This is a probem since an API users rely on consistent default values.
Related: SYS#8100 Change-Id: I6b9ca5c3b774e9acff3a3276139bd940ec57f3a3 --- M library/euicc/RSPDefinitions_Templates.ttcn 1 file changed, 5 insertions(+), 5 deletions(-)
Approvals: Jenkins Builder: Verified pespin: Looks good to me, but someone else must approve jolly: Looks good to me, but someone else must approve fixeria: Looks good to me, approved
diff --git a/library/euicc/RSPDefinitions_Templates.ttcn b/library/euicc/RSPDefinitions_Templates.ttcn index 581648b..fac53d7 100644 --- a/library/euicc/RSPDefinitions_Templates.ttcn +++ b/library/euicc/RSPDefinitions_Templates.ttcn @@ -47,7 +47,7 @@ ts_boundProfilePackage := { initialiseSecureChannelRequest := { remoteOpId := 1, - transactionId := 'AABBCC'O, + transactionId := 'ABCDEF'O, controlRefTemplate := { keyType := '88'O, /* AES */ keyLen := '10'O, /* 16 byte key-length */ @@ -231,7 +231,7 @@ } template (value) ProfileInstallationResultData ts_profileInstallationResultData(template (value) charstring notificationAddress := "smdp.example.com") := { - transactionId := 'AABBCC'O, + transactionId := 'ABCDEF'O, notificationMetadata := { seqNumber := 1234, profileManagementOperation := '01'B, /* is this correct? (notificationInstall) */ @@ -321,7 +321,7 @@ } } template (value) RemoteProfileProvisioningRequest -ts_getBoundProfilePackageRequest(template (value) octetstring transactionId := 'AABBCC'O, +ts_getBoundProfilePackageRequest(template (value) octetstring transactionId := 'ABCDEF'O, template (value) PrepareDownloadResponse prepareDownloadResponse := ts_prepareDownloadResponse) := { getBoundProfilePackageRequest := { transactionId := transactionId, @@ -339,7 +339,7 @@ } } template (value) RemoteProfileProvisioningResponse -ts_getBoundProfilePackageResponse(template (value) octetstring transactionId := 'AABBCC'O, +ts_getBoundProfilePackageResponse(template (value) octetstring transactionId := 'ABCDEF'O, template (value) BoundProfilePackage boundProfilePackage := ts_boundProfilePackage) := { getBoundProfilePackageResponse := { getBoundProfilePackageOk := { @@ -359,7 +359,7 @@ } } template (value) RemoteProfileProvisioningRequest -ts_authenticateClientRequest(template (value) octetstring transactionId := 'AABBCC'O, +ts_authenticateClientRequest(template (value) octetstring transactionId := 'ABCDEF'O, template (value) AuthenticateServerResponse authenticateServerResponse := ts_authenticateServerResponse) := { authenticateClientRequest := { transactionId := transactionId,