fixeria has uploaded this change for review. ( https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/38672?usp=email )
Change subject: library/gsup: fix template param restriction for tr_GSUP ......................................................................
library/gsup: fix template param restriction for tr_GSUP
Change-Id: If4ceaf60311f9e4ed57153e2f6d7cb793c637f89 --- M library/GSUP_Templates.ttcn 1 file changed, 2 insertions(+), 1 deletion(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-ttcn3-hacks refs/changes/72/38672/1
diff --git a/library/GSUP_Templates.ttcn b/library/GSUP_Templates.ttcn index 21805cb..6ad1805 100644 --- a/library/GSUP_Templates.ttcn +++ b/library/GSUP_Templates.ttcn @@ -309,7 +309,8 @@ } }
-template GSUP_PDU tr_GSUP(template GSUP_MessageType msgt := ?, template GSUP_IEs ies := *) := { +template GSUP_PDU tr_GSUP(template (present) GSUP_MessageType msgt := ?, + template (present) GSUP_IEs ies := ?) := { msg_type := msgt, ies := ies }