laforge has submitted this change. ( https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/34211 )
Change subject: diameter: Fix order of AVPs in tr_DIA_AIA ......................................................................
diameter: Fix order of AVPs in tr_DIA_AIA
Put them in the order they are specified and transmitted in the wire.
Change-Id: Ib7ced55a5986e4b9b69529622625ae3694a4d44d --- M library/DIAMETER_Templates.ttcn 1 file changed, 14 insertions(+), 3 deletions(-)
Approvals: laforge: Looks good to me, approved fixeria: Looks good to me, but someone else must approve Jenkins Builder: Verified
diff --git a/library/DIAMETER_Templates.ttcn b/library/DIAMETER_Templates.ttcn index e13e31f..85725fc 100644 --- a/library/DIAMETER_Templates.ttcn +++ b/library/DIAMETER_Templates.ttcn @@ -1408,11 +1408,11 @@ ete_id := ete_id, avps := superset( tr_AVP_SessionId(sess_id), - tr_AVP_ResultCode(DIAMETER_SUCCESS), tr_AVP_AuthSessionState(NO_STATE_MAINTAINED), - tr_AVP_3GPP_AuthInfo(auth_info_contents), tr_AVP_OriginHost(orig_host), - tr_AVP_OriginRealm(orig_realm) + tr_AVP_OriginRealm(orig_realm), + tr_AVP_ResultCode(DIAMETER_SUCCESS), + tr_AVP_3GPP_AuthInfo(auth_info_contents) ));