Commit 65b7f565 authored by garciay's avatar garciay
Browse files

In TTCN-3 source code, rename management port into MgmtPort

Add support of management port plugin
Add support of Golden Reader Tool plugin + external adapter
Modify behavior of fx_verifySignature external function
parent bee6482b
Loading
Loading
Loading
Loading
+20 −5
Original line number Diff line number Diff line
@@ -11,12 +11,31 @@

module ePassport_Pixits {

	// TA choice
	// TA choices
    /**
     * @desc	Vendor name for the ePassport equipment
     */
	modulepar {
		charstring
			PXT_DRIVER_PROVIDER_CLASS_NAME :=
			"org.etsi.epassport.comprion.ComprionImplFactory";
	};
    /**
     * @desc	Vendor name for the IS equipment
     */
	modulepar {
		charstring
			PXT_IS_DRIVER_PROVIDER_CLASS_NAME :=
			"org.etsi.epassport.grt.GRTImplFactory";
	};
    /**
     * @desc	Vendor IP address for the IS equipment
     */
	modulepar {
		charstring
			PXT_IS_DRIVER_IP :=
			"127.0.0.1;5001;5000"; // Remote IP;Remote port;Local port
	};

	// ATS
	import from ePassport_Types all;
@@ -86,10 +105,6 @@ module ePassport_Pixits {
	 * - Root directory to access to CFG.DFLT.PLAIN directories
	 */
	group SystemAdapterSettings {
	    /**
	     * @desc	Vendor name for the ePassport equipment
	     */
	    modulepar charstring PXT_VENDOR_NAME := "org.etsi.epassport.comprion.ComprionImplFactory";
	    /**
	     * @desc	Root directory to access to CFG.DFLT.PLAIN directories
	     */
+3 −3
Original line number Diff line number Diff line
@@ -15,7 +15,7 @@ module ePassport_TestSystem {
	type component MRTD_System
	{
		port MrtdPort system_mrtdPort;
		port Mgmt 	system_mgmt
		port MgmtPort 	system_mgmtPort
	}
	

@@ -27,7 +27,7 @@ module ePassport_TestSystem {
		
		//Ports
		port MrtdPort mrtdport;
		port Mgmt 	mgmt;
		port MgmtPort 	mgmt;
		//port TaPort		ta;
	
		// Component variables
@@ -117,7 +117,7 @@ group portDefs {
			Response;
	};
	
	type port Mgmt message {
	type port MgmtPort message {
		in CommandGeneric;
		out Response;
	};