Commit b8be4ba7 authored by garciay's avatar garciay
Browse files

Merge Dirk's changes

Modify @author clause
parent aef9fc3a
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -90,7 +90,7 @@
        /**
         * @desc    Setups default configuration   
         */
        function f_cfUp() runs on ItsBtp {
        function f_cfUp() runs on ItsBtp system ItsBtpSystem {
            
            map(self:utPort, system:utPort);
            map(self:btpPort, system:btpPort);
@@ -101,7 +101,7 @@
        /**
         * @desc    Deletes default configuration 
         */
        function f_cfDown() runs on ItsBtp {
        function f_cfDown() runs on ItsBtp system ItsBtpSystem {
            
            unmap(self:utPort, system:utPort);
            unmap(self:btpPort, system:btpPort);
+4 −4
Original line number Diff line number Diff line
/**
 *    @author   ETSI / STF405 / STF449
 *    @author   ETSI / STF405 / STF449 / STF484 / STF517
 *    @version  $URL$
 *              $Id$
 *    @desc     Module containing common functions for ITS CAM
@@ -12,7 +12,7 @@ module LibItsCam_Functions {
    import from LibCommon_VerdictControl all;
    import from LibCommon_Sync all;
    
    // Libits
    // LibIts
    import from ITS_Container language "ASN.1:1997" all;
    import from CAM_PDU_Descriptions language "ASN.1:1997" all;
    import from DENM_PDU_Descriptions language "ASN.1:1997" all;    
@@ -288,7 +288,7 @@ module LibItsCam_Functions {
         */
        function f_cfUp(
                        in charstring p_certificateId := PX_CERT_FOR_TA
        ) runs on ItsCam {
        ) runs on ItsCam system ItsCamSystem {
            
            map(self:utPort, system:utPort);
            map(self:acPort, system:acPort);
@@ -303,7 +303,7 @@ module LibItsCam_Functions {
        /**
         * @desc    Deletes default configuration 
         */
        function f_cfDown() runs on ItsCam {
        function f_cfDown() runs on ItsCam system ItsCamSystem {
            
            // Initialise secured mode
            f_uninitialiseSecuredMode();
+1 −1
Original line number Diff line number Diff line
/**
 *    @author   ETSI / STF405 / STF449
 *    @author   ETSI / STF405 / STF449 / STF484 / STF517
 *    @version  $URL$
 *              $Id$
 *    @desc     CAM PICS
+1 −1
Original line number Diff line number Diff line
/**
 *  @author   ETSI / STF517
 *  @author   ETSI / STF405 / STF449 / STF484 / STF517
 *  @version  $URL$
 *            $Id$
 *  @desc     Module containing Pixits for CAM
+1 −1
Original line number Diff line number Diff line
/**
 *    @author   ETSI / STF405 / STF449
 *    @author   ETSI / STF405 / STF449 / STF484 / STF517
 *    @version  $URL$
 *              $Id$
 *    @desc     Module containing base template definitions for CAM
Loading