Skip to content
LibIpv6_ModuleParameters.ttcn 1.47 KiB
Newer Older
alex's avatar
alex committed
/*
 *	@author 	STF 276
 *  @version 	$Id$
 *	@desc		- Here all module parameters from every RFC shall be collected.
 *  
 */
module LibIpv6_ModuleParameters {
	
	//LibCommon
	import from LibCommon_DataStrings all;
	import from LibCommon_BasicTypesAndValues all;
	import from LibCommon_TextStrings all;
	//LibIpv6
	import from LibIpv6_Interface_TypesAndValues all ;
alex's avatar
alex committed

peter's avatar
peter committed
	/*
	 * @desc Length of Source Link-Layer and Target Link-Layer options
	 * @remark Length is specified in units of 8 octets including type+length field
peter's avatar
peter committed
	*/
	modulepar {UInt8 PX_MAC_OPTION_LEN := 1}
alex's avatar
alex committed

peter's avatar
peter committed
	/*
	 * @desc What time does the IUT need to build its global address?
peter's avatar
peter committed
	*/
	modulepar {float PX_T_BUILD_GLA := 15.0}


	/*
	 * @desc Shall IPSEC be tested?
	*/
	modulepar { IpSecSwitch PX_IP_SEC := e_securityOff }

	/*
	 * @desc Shall IPSEC be tested?
	*/
	modulepar { IpSecProtocol PX_IP_SEC_PROTOCOL := e_esp }

	/*
	 * @desc Which protocol mode shall be tested?
	*/
	modulepar { IpSecProtocolMode PX_IP_SEC_PROTOCOL_MODE := e_transportMode }

	/*
	 * @desc Which Algo mode shall be used for Encryption?
	*/
	modulepar { EncryptionAlgo PX_ENCRYPTION_ALGO := e_tripleDes_cbc }

	/*
	 * @desc Which Algo mode shall be used for Integrity?
	*/
	modulepar { IntegrityAlgo PX_INTEGRITY_ALGO := e_hmac_sha1_96 }

	/*
	 * @desc Which Algo mode shall be used for Integrity?
	*/
	modulepar { CombinedModeAlgo PX_COMBINED_MODE_ALGO := e_null }

	
peter's avatar
peter committed
	
alex's avatar
alex committed
} // end module LibIpv6_ModuleParameters