Commit 068150bf authored by tepelmann's avatar tepelmann
Browse files

Cleanup.

parent 3906e8ec
Loading
Loading
Loading
Loading
+14 −41
Original line number Diff line number Diff line
@@ -619,6 +619,10 @@ module LibItsGeoNetworking_Functions {
            //TODO
        }
        
        function f_utGenerateTSBMessage() runs on ItsNt {
            //TODO
        }
        
        function f_utCheckEvent(/*FIXME*/) runs on ItsNt return FncRetCode {
            var FncRetCode v_ret := e_error;
            
@@ -688,6 +692,11 @@ module LibItsGeoNetworking_Functions {
    
    group testerFunctions {
        
        /**
         * @desc Sends a GeoNetworking message and in case of an included sequence number in the message the 
         *       local sequence number will be increased by one.
         * @param p_geoNetReq The message to sent.
         */
        function f_sendGeoNetMessage(in template (value) GeoNetworkingReq p_geoNetReq) runs on ItsNt {
            geoNetworkingPort.send(p_geoNetReq);
            if (not (ischosen(p_geoNetReq.msgOut.header.shbHeader) or ischosen(p_geoNetReq.msgOut.header.beaconHeader))) {
@@ -695,22 +704,6 @@ module LibItsGeoNetworking_Functions {
            }
        }
      
        function f_getTesterLongPosVector() return LongPosVector {
            var LongPosVector v_longPosVector;
            
            //TODO
            
            return v_longPosVector; 
        }
        
        function f_getTesterGnAddress() return GN_Address {
            var GN_Address v_gnAddress;
            
            //TODO
            
            return v_gnAddress;
        }
      
        /**
         * @desc Sets the value of the sequence number for the next event.
         * @return 
@@ -723,14 +716,6 @@ module LibItsGeoNetworking_Functions {
    
    group iutFunctions {
        
        function f_getIutGnAddress() return GN_Address {
            var GN_Address v_gnAddress;
              
            //TODO
          
            return v_gnAddress;
        }
        
        /**
         * @desc Gets the LS retransmission timer.
         * @return 
@@ -817,18 +802,6 @@ module LibItsGeoNetworking_Functions {
        
    } // end iutFunctions
    
    group neighborFunctions {
      
      function f_getNeighborLongPosVector() return LongPosVector {
            var LongPosVector v_longPosVector;
            
            //TODO
            
            return v_longPosVector; 
        }
        
    } // end testerFunctions
    
    group posVectorFunctions {
        
        function f_longPosVector2ShortPosVector(in LongPosVector p_longPosVector) return ShortPosVector {