aboutsummaryrefslogtreecommitdiffstats
path: root/library
diff options
context:
space:
mode:
authorOliver Smith <osmith@sysmocom.de>2020-01-15 15:58:54 +0100
committerosmith <osmith@sysmocom.de>2020-01-20 07:31:45 +0000
commit62a1c63436c7ddc5c44d6d6ee56d5df3a3b76fd9 (patch)
tree4faee8e83401db2d3fdcbbcb5d6044d58e1b2011 /library
parente187091e1643ee5ba8e4cb125b05a610f66bf5ff (diff)
hlr: f_perform_UL: add CnDomain parameter
Make it possible to do CS location update, not only PS. This is needed for upcoming D-GSM related tests. Related: SYS#4618 Change-Id: Idd699f054c9242614b9bea066428293f8b2da9c2
Diffstat (limited to 'library')
-rw-r--r--library/GSUP_Types.ttcn4
1 files changed, 2 insertions, 2 deletions
diff --git a/library/GSUP_Types.ttcn b/library/GSUP_Types.ttcn
index 880a6ad0..0f36d4dc 100644
--- a/library/GSUP_Types.ttcn
+++ b/library/GSUP_Types.ttcn
@@ -495,9 +495,9 @@ template GSUP_PDU tr_GSUP_SAI_RES(template hexstring imsi) :=
tr_GSUP(OSMO_GSUP_MSGT_SEND_AUTH_INFO_RESULT, {
tr_GSUP_IE_IMSI(imsi), *, tr_GSUP_IE(OSMO_GSUP_AUTH_TUPLE_IE), * });
-template (value) GSUP_PDU ts_GSUP_UL_REQ(hexstring imsi) :=
+template (value) GSUP_PDU ts_GSUP_UL_REQ(hexstring imsi, GSUP_CnDomain dom := OSMO_GSUP_CN_DOMAIN_PS) :=
ts_GSUP(OSMO_GSUP_MSGT_UPDATE_LOCATION_REQUEST, {
- valueof(ts_GSUP_IE_IMSI(imsi)) });
+ valueof(ts_GSUP_IE_IMSI(imsi)), valueof(ts_GSUP_IE_CnDomain(dom)) });
template GSUP_PDU tr_GSUP_UL_REQ(template hexstring imsi) :=
tr_GSUP_IMSI(OSMO_GSUP_MSGT_UPDATE_LOCATION_REQUEST, imsi);