pespin has submitted this change. ( https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/34820?usp=email )
(
1 is the latest approved patch-set. No files were changed between the latest approved patch-set and the submitted one. )Change subject: GTPv2_Templates: Fix sveral wrong ElementIdentifier ......................................................................
GTPv2_Templates: Fix sveral wrong ElementIdentifier
Change-Id: Idea191cedd78768a3fef7a9958fda5c27f2859e1 --- M library/GTPv2_Templates.ttcn 1 file changed, 14 insertions(+), 5 deletions(-)
Approvals: fixeria: Looks good to me, approved Jenkins Builder: Verified
diff --git a/library/GTPv2_Templates.ttcn b/library/GTPv2_Templates.ttcn index 644728e..b306955 100644 --- a/library/GTPv2_Templates.ttcn +++ b/library/GTPv2_Templates.ttcn @@ -213,16 +213,16 @@ }
-/* 8.5 */ +/* 8.6 */ template (value) AccessPointName ts_GTP2C_APN(template (value) octetstring apn) := { - elementIdentifier := '48'O, + elementIdentifier := '47'O, lengthIndicator := 0, /* overwritten */ instance := '0000'B, spare := '0000'B, aPN_Value := apn } template (present) AccessPointName tr_GTP2C_APN(template (present) octetstring apn) := { - elementIdentifier := '48'O, + elementIdentifier := '47'O, lengthIndicator := ?, instance := ?, spare := '0000'B, @@ -321,7 +321,7 @@
/* 8.17 */ template (value) RAT_Type ts_GTP2C_RatType(template (value) integer rat) := { - elementIdentifier := '53'O, + elementIdentifier := '52'O, lengthIndicator := 0, /* overwritten */ instance := '0000'B, spare := '0000'B, @@ -329,7 +329,7 @@ additionalOctets := omit } template (present) RAT_Type tr_GTP2C_RatType(template (present) integer rat) := { - elementIdentifier := '53'O, + elementIdentifier := '52'O, lengthIndicator := ?, instance := ?, spare := '0000'B,