From 47eff0d30695cd705e9094fcf0538e728ed939bd Mon Sep 17 00:00:00 2001 From: rennoch Date: Fri, 16 Nov 2012 13:01:52 +0000 Subject: [PATCH] introduction of c_urnScheme (cp. RFC 5031): temporary solution need further discussion with INT, MTS and STF160 --- ttcn/LibIms_SIPTypesAndValues.ttcn | 4 ++++ ttcn/LibIms_Steps.ttcn | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/ttcn/LibIms_SIPTypesAndValues.ttcn b/ttcn/LibIms_SIPTypesAndValues.ttcn index bd94c17..2b30fd9 100644 --- a/ttcn/LibIms_SIPTypesAndValues.ttcn +++ b/ttcn/LibIms_SIPTypesAndValues.ttcn @@ -16,6 +16,10 @@ group Constants const integer c_ISUP_HOP_COUNT:=31; //TODO replace this value with appropriate PIXIT parameter +// URN scheme (RFC 5031) +// TODO NOTE: this definition is for temporary use +const charstring c_urnScheme := "urn"; + group UserProfileConstants { // number of user profile (RESERVED: from 1-10 for SIP profile) diff --git a/ttcn/LibIms_Steps.ttcn b/ttcn/LibIms_Steps.ttcn index 9dcc7a3..c3c372a 100644 --- a/ttcn/LibIms_Steps.ttcn +++ b/ttcn/LibIms_Steps.ttcn @@ -807,10 +807,14 @@ module LibIms_Steps p_sipUrl.hostPort := {host := PX_IMS_TS_ISUP_HOME_DOMAIN, portField :=omit} } case (c_serviceProfile_EMERGENCY) { + // TODO NOTE: this definition is for temporary use + p_sipUrl.scheme := c_urnScheme; p_sipUrl.userInfo := {userOrTelephoneSubscriber:=PX_IMS_SUT_EMERGENCY_SERVICE, password:=omit}; p_sipUrl.hostPort := {host := PX_IMS_SUT_EMERGENCY_HOME_DOMAIN, portField :=omit} } case (c_serviceProfile_EMERGENCY_INVALID) { + // TODO NOTE: this definition is for temporary use + p_sipUrl.scheme := c_urnScheme; p_sipUrl.userInfo := {userOrTelephoneSubscriber:=PX_IMS_SUT_EMERGENCY_SERVICE_INVALID, password:=omit}; p_sipUrl.hostPort := {host := PX_IMS_SUT_EMERGENCY_HOME_DOMAIN, portField :=omit} } -- GitLab