lynxis lazus has submitted this change. ( https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/40667?usp=email )
Change subject: GSUP_Templates: ts_GSUP_UL_REQ: add template scopes ......................................................................
GSUP_Templates: ts_GSUP_UL_REQ: add template scopes
Allow to omit the source_name TLV in GSUP UL Request. The whole ts_GSUP_UL_REQ must resolve to a value.
Change-Id: I250960a1e1c19dfa1efa81f6bbc93efa07cb225c --- M library/GSUP_Templates.ttcn 1 file changed, 2 insertions(+), 2 deletions(-)
Approvals: pespin: Looks good to me, approved Jenkins Builder: Verified fixeria: Looks good to me, but someone else must approve
diff --git a/library/GSUP_Templates.ttcn b/library/GSUP_Templates.ttcn index 3206d1c..1fc18f1 100644 --- a/library/GSUP_Templates.ttcn +++ b/library/GSUP_Templates.ttcn @@ -410,8 +410,8 @@ tr_GSUP(OSMO_GSUP_MSGT_SEND_AUTH_INFO_RESULT, { tr_GSUP_IE_IMSI(imsi), *, auth_tuple_ie, * });
-template GSUP_PDU ts_GSUP_UL_REQ(hexstring imsi, GSUP_CnDomain dom := OSMO_GSUP_CN_DOMAIN_PS, - template octetstring source_name := omit) := +template (value) GSUP_PDU ts_GSUP_UL_REQ(hexstring imsi, GSUP_CnDomain dom := OSMO_GSUP_CN_DOMAIN_PS, + template (omit) octetstring source_name := omit) := ts_GSUP(OSMO_GSUP_MSGT_UPDATE_LOCATION_REQUEST, f_gen_ts_ies(imsi, dom := dom, source_name := source_name));