Commit b8ac1e81 authored by rennoch's avatar rennoch
Browse files

use of %-characters in Replaces parameter of ReferTo header

parent c2d130bc
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -15023,7 +15023,7 @@ module AtsNIT_SipSip_SS_TCFunctions {
			v_requestUri.hostPort := vc_reqHostPort;
			v_referToUri := f_initSipUrl(c_userProfile_UE3atSUThome);

			v_replaceString := vc_callId.callid & f_getTag(vc_to.toParams, "to-tag") & f_getTag(vc_from.fromParams, "from-tag");
			v_replaceString := vc_callId.callid & f_getTag(vc_to.toParams, "%3Bto-tag%3D") & f_getTag(vc_from.fromParams, "%3Bfrom-tag%3D");
			v_referToUri.urlParameters := {{"Replaces",v_replaceString}}; //m_Replaces(v_callId, v_toTag, v_fromTag),
					
			f_referECTUser(vc_cSeq, c_userProfile_UE1atSUThome, v_requestUri, v_referToUri, f_initSipUrl(c_userProfile_UE2atSUThome), true);
@@ -15349,7 +15349,7 @@ module AtsNIT_SipSip_SS_TCFunctions {
			v_requestUri.hostPort := vc_reqHostPort;		

			v_referToUri := f_initSipUrl(c_userProfile_UE3atSUThome);
			v_replaceString := vc_callId.callid & f_getTag(vc_to.toParams, "to-tag") & f_getTag(vc_from.fromParams, "from-tag");
			v_replaceString := vc_callId.callid & f_getTag(vc_to.toParams, "%3Bto-tag%3D") & f_getTag(vc_from.fromParams, "%3Bfrom-tag%3D");
			v_referToUri.urlParameters := {{"Replaces",v_replaceString}}; //m_Replaces(v_callId, v_toTag, v_fromTag),
					
			f_referECTUser(vc_cSeq, c_userProfile_UE3atSUThome, v_requestUri, v_referToUri, f_initSipUrl(c_userProfile_UE2atSUThome), true);