pespin has uploaded this change for review. ( https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/40364?usp=email )
Change subject: NGAP_Templates: Fix criticality of PLMNSupportList IE in NGSetupResponse ...................................................................... NGAP_Templates: Fix criticality of PLMNSupportList IE in NGSetupResponse The criticality rejected is specified in 3GPP TS 38.413 version 18.5.0 Release 18, both in the ASN.1 definition of "NGSetupResponseIEs NGAP-PROTOCOL-IES", as well as section 9.2.6.2. open5gs-amfd is correctly sending reject there. Change-Id: I0e73a97201e61a41ce5b056a149e185582ed187c --- M library/ngap/NGAP_Templates.ttcn 1 file changed, 5 insertions(+), 5 deletions(-) git pull ssh://gerrit.osmocom.org:29418/osmo-ttcn3-hacks refs/changes/64/40364/1 diff --git a/library/ngap/NGAP_Templates.ttcn b/library/ngap/NGAP_Templates.ttcn index 9d77cec..592f2ae 100644 --- a/library/ngap/NGAP_Templates.ttcn +++ b/library/ngap/NGAP_Templates.ttcn @@ -5794,7 +5794,7 @@ }, { id := id_PLMNSupportList, - criticality := ignore, + criticality := reject, value_ := { PLMNSupportList := p_plmnSuppList } } } @@ -5836,8 +5836,8 @@ value_ := { RelativeAMFCapacity := p_relativeAmfCap } }, { - id := id_PLMNSupportList, - criticality := ignore, + id := id_PLMNSupportList, + criticality := reject, value_ := { PLMNSupportList := p_plmnSuppList } } } @@ -5874,7 +5874,7 @@ }, { id := id_PLMNSupportList, - criticality := ignore, + criticality := reject, value_ := { PLMNSupportList := p_plmnSuppList } }, { @@ -5916,7 +5916,7 @@ }, { id := id_PLMNSupportList, - criticality := ignore, + criticality := reject, value_ := { PLMNSupportList := p_plmnSuppList } }, { -- To view, visit https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/40364?usp=email To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings?usp=email Gerrit-MessageType: newchange Gerrit-Project: osmo-ttcn3-hacks Gerrit-Branch: master Gerrit-Change-Id: I0e73a97201e61a41ce5b056a149e185582ed187c Gerrit-Change-Number: 40364 Gerrit-PatchSet: 1 Gerrit-Owner: pespin <pes...@sysmocom.de>