Commit ff6f7ad1 authored by rennoch's avatar rennoch
Browse files

corrections due to application of Titan

parent cc376623
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -128,7 +128,7 @@
					timer TDelay_UPT  := PX_TDelay_UPT; 
					timer TDelay_UUI  := PX_TDelay_UUI;       			
        			timer TDelay_UNKNOWN  := PX_TDelay_UNKNOWN;
					timer ProtocolTimer;
					timer ProtocolTimer := PX_ISUP_TWAIT;

        			port IsupBiccPort IsupBiccP;
        			port Coordination cpA;
+1 −1
Original line number Diff line number Diff line
@@ -2313,7 +2313,7 @@ group SipIsup_ISUP_GeneralSteps
	{
      v_Default := activate (a_IsupBicc_Def_Generic());
      
      ProtocolTimer.start;
      ProtocolTimer.start; // use of default value to be checked
      alt
      {
         [] ProtocolTimer.timeout{};
+18 −7
Original line number Diff line number Diff line
@@ -25,6 +25,19 @@ import from SIPI_ISUP_MsgTypes all;
import from LibCommon_Sync all;
import from LibCommon_VerdictControl all;

//AXR comment: due to es_20187301v040101p (section 6.2.12) the address type should be defined in this module
// but the this causes an error with TAU tester 
//group AdressTypes // AXR: copy from module TestSystem 
//{
//	type record address
//	{
//		//HostPort
//		charstring 	        host optional,        // hostname, IPv4 or IPv6
//		integer             portField optional    // represented as an integer
//	} with { encode "SIPCodec" }
//
////	type address WorkaroundAddress; //Remove it later
//}// end group AdressTypes

	/* 
	* @desc	This default handles receiving of the sync server
@@ -3022,12 +3035,10 @@ group GlobalSteps {
				match(loc_sdp.media_list[j].media_field.fmts,loc_media.media_field.fmts) and
				not match(loc_sdp.media_list[j].media_field.ports.port_number,0)) // not rejected
				{					
					
					if (ispresent(loc_sdp.media_list[j].attributes))
					  {f_check_SDPmedia_attributelist(loc_sdp.media_list[j].attributes, loc_media.attributes[0])}
					
					return(true);};
			};
					if (ispresent(loc_sdp.media_list[j].attributes) and 
					  f_check_SDPmedia_attributelist(loc_sdp.media_list[j].attributes, loc_media.attributes[0]))
					{return(true);}
				};};
	}	
	return(false);
	}