Commit f99d0ced authored by seb's avatar seb
Browse files

really LibSec added

parent 6d220adb
Loading
Loading
Loading
Loading
+23 −0
Original line number Original line Diff line number Diff line
/*
 *	@author 	STF 276
 *  @version 	$Id$
 *	@desc		This module specifies common IP Authentication Header messages interchanges (= operations)
 *              for an Ipv6 test component.
 *              Functions do not set a test component verdict but instead
 *              use the function return value instead to notify the function
 *              caller about the success of the operation.
 *
 */
module LibIpv6_Rfc4302Ah_Functions {

	//LibCommon
	import from LibCommon_BasicTypesAndValues all;
	import from LibCommon_DataStrings all;
	import from LibCommon_VerdictControl { type FncRetCode };
	import from LibCommon_Time all;
	//LibIpv6
	
	//AtsIpv6
	
	
} // end module LibIpv6_Rfc4302Ah_Functions
+17 −0
Original line number Original line Diff line number Diff line
/*
 *	@author 	STF 276
 *  @version 	$Id$
 *	@desc		This module specifies common template definitions
 *              to specify IPv6 packets for IP Authentication Header
 *
 */
 module LibIpv6_Rfc4302Ah_Templates {

	//LibCommon
	import from LibCommon_BasicTypesAndValues all;
	import from LibCommon_DataStrings all;
	//LibIpv6


			
} // end module LibIpv6_Rfc4302Ah_Templates
+20 −0
Original line number Original line Diff line number Diff line
/*
 *	@author 	STF 276
 *  @version 	$Id$
 *	@desc 		This module defines the structure mobile IPv6 header 
 *              based on RFC IP Authentication Header and using types from  
 *              the Common library. Also it provides some useful constant 
 *              definitions.
 *  
 */
 module LibIpv6_Rfc4302Ah_TypesAndValues {
	
	//LibCommon
	import from LibCommon_BasicTypesAndValues all;
	import from LibCommon_DataStrings all;
	//LibIpv6
	

	

} // end module LibIpv6_Rfc4302Ah_TypesAndValues
+22 −0
Original line number Original line Diff line number Diff line
/*
 *	@author 	STF 276
 *  @version 	$Id$
 *	@desc		This module specifies IP ESP messages interchanges (= operations)
 *              for an Ipv6 test component.
 *              Functions do not set a test component verdict but instead
 *              use the function return value instead to notify the function
 *              caller about the success of the operation.
 *
 */
module LibIpv6_Rfc4303Esp_Functions {

	//LibCommon
	import from LibCommon_BasicTypesAndValues all;
	import from LibCommon_DataStrings all;
	import from LibCommon_VerdictControl { type FncRetCode };
	import from LibCommon_Time all;
	//LibIpv6
	//AtsIpv6


} // end module LibIpv6_Rfc4303Esp_Functions
+16 −0
Original line number Original line Diff line number Diff line
/*
 *	@author 	STF 276
 *  @version 	$Id$
 *	@desc		This module specifies common template definitions
 *              to specify IPv6 packets for IP ESP
 *
 */
 module LibIpv6_Rfc4303Esp_Templates {

	//LibCommon
	import from LibCommon_BasicTypesAndValues all;
	import from LibCommon_DataStrings all;
	//LibIpv6
	
		
} // end module LibIpv6_Rfc4303Esp_Templates
Loading