Commit 38cbf5b3 authored by schmitting's avatar schmitting
Browse files

No commit message

No commit message
parent 4d3ceaba
Loading
Loading
Loading
Loading
+4 −6
Original line number Diff line number Diff line
/*
 *	@author 	STF 297
 *	@author 	STF 366
 *  @version    $Id$
 *	@desc		This module contains the PIXIT parameters 
 */

module SipIsup_PIXITS {

	import from SipIsup_TypesAndValues all;
	import from LibCommon_BasicTypesAndValues all;

	/*
	** @remark	Reference: XXX
	** @desc	What is the local receive poilcy for SIP?
	*			Value of PX_STATUS_LINE
	** @desc	What is the local receive policy for SIP?
	*			Value of PX_LOCAL_POLICY
	*			1: receive no cause due to local policy, 2: receive cause #31 due to local policy
	*/
	modulepar {UInt2  PX_LOCAL_POLICY := 1;
@@ -22,6 +22,4 @@ module SipIsup_PIXITS {
	boolean PX_Variant_j_Inc := false;
	}



}// end module SipIsup_PIXITS
 No newline at end of file
+1 −2
Original line number Diff line number Diff line
/*
 *	@author 	STF 276
 *	@author 	STF 366
 *  @version 	$Id$
 *	@desc		This module contains functions which implement the 
 *              configuration of the SUT adapter and mapping of test
@@ -15,7 +15,6 @@
	//AtsSipIsup
	import from SipIsup_TestSystem all;
	import from SipIsup_SIP_TypesAndConf all;
	//import from SipIsup_ISUP_Configuration all;
	import from SipIsup_ISUP_ModuleParams all;
	import from SipIsup_ISUP_ParamTypes all;
	import from SipIsup_ISUP_MsgTypes all;
+1 −1
Original line number Diff line number Diff line
/*
 *	@author 	STF 276
 *	@author 	STF 366
 *  @version 	$Id$
 *	@desc		Specifies component types used by the IPv6 ATS.
 *              Definitions are based on component type definitions
+0 −28
Original line number Diff line number Diff line
/*
 *	@author 	STF 276
 *  @version 	$Id$
 *	@desc		Specifies component types used by the IPv6 ATS.
 *              Definitions are based on component type definitions
 *              from IPv6, SCOP and common synchronization libraries.
 *
 */
 module SipIsup_TypesAndValues {

	//LibCommon
	import from LibCommon_Sync all;
	import from LibCommon_AbstractData all;
	import from LibCommon_Time all;
	import from LibCommon_BasicTypesAndValues all;
	import from LibCommon_DataStrings all;
	import from LibCommon_TextStrings all;

	const charstring c_resourceUnavailable := "Make internal resource reservation unsuccessful";

	type integer UInt2 (0..3);
	type integer UInt3 (0..7);
	type integer UInt4 (0..15);
	type integer UInt5 (0..31);
	type integer UInt6 (0..63);
	type integer UInt8 (0..255);

} // end module SipIsup_TypesAndValues
+6 −9
Original line number Diff line number Diff line
/*
 *	@author 	STF 297
 *	@author 	STF 36
 *	@version	$Id$
 *	@desc		This module provides ISUP/BICC-related constants used by the test component 
*/
@@ -11,8 +11,7 @@ module SipIsup_ISUP_Constants

	import from SipIsup_ISUP_ParamTypes all;

group constants
{
group Constants {

/* Value 'Connected' of bit field element 'action indicator' in IE 'Action indicator'. */
const Bit1 c_AI_actInd_conn := '0'B;
@@ -831,11 +830,9 @@ const Bit3 c_ISUP_GNU_numbPlanInd_E164 := '001'B;
/* Value 'complete' for element iNN inside Generic number parameter (GNU); Optional(O) format.  (TX side).*/
const Bit1 c_ISUP_GNU_iNN_compl := '0'B; 

}// end group constants

} /* end group Constants */

group functions
{
group Functions {
/* Function f_char_to_BCD
* @desc: Returns BCD code in a hexstring converted from
*		 address digits (p_char) in charstring format 
@@ -1016,9 +1013,9 @@ return Bit8 {
 return int2bit((lengthof (v_ies.connectedSubaddress.subaddressInformation) + p_int), 8 );
}

}// end functions
} /* end group Functions */

}// End module SipIsup_ISUP_Constants
} /* end module SipIsup_ISUP_Constants */



Loading