Commit 47eff0d3 authored by rennoch's avatar rennoch
Browse files

introduction of c_urnScheme (cp. RFC 5031): temporary solution need further...

introduction of c_urnScheme (cp. RFC 5031): temporary solution need further discussion with INT, MTS and STF160
parent fe68aee4
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -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)
+4 −0
Original line number Diff line number Diff line
@@ -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}
						}