Commit 92bbd4ff authored by tepelmann's avatar tepelmann
Browse files

Minor change for stop beaconing.

parent 38325ab1
Loading
Loading
Loading
Loading
+3 −3
Original line number Original line Diff line number Diff line
@@ -296,7 +296,7 @@ module LibItsGeoNetworking_Functions {
        
        
        function f_stopBeingNeighbour() runs on ItsNt  {
        function f_stopBeingNeighbour() runs on ItsNt  {
            
            
            f_acTriggerEvent(m_stopBeaconing(vc_componentName));
            f_acTriggerEvent(m_stopBeaconing);
            deactivate; // FIXME: probably too brutal
            deactivate; // FIXME: probably too brutal
            activate(a_default());
            activate(a_default());
            
            
@@ -886,7 +886,7 @@ module LibItsGeoNetworking_Functions {
        
        
    } // end upperTester
    } // end upperTester
    
    
    group testAdapter {
    group adapterControl {
        
        
        /**
        /**
         * @desc Triggers event in the test system adaptation.
         * @desc Triggers event in the test system adaptation.
@@ -901,7 +901,7 @@ module LibItsGeoNetworking_Functions {
            return v_ret;
            return v_ret;
        }
        }
        
        
    } // end testAdapter
    } // end adapterControl
    
    
    group commonFunctions {
    group commonFunctions {
        
        
+1 −2
Original line number Original line Diff line number Diff line
@@ -45,9 +45,8 @@ module LibItsGeoNetworking_Templates {
             * @desc Testsystem will stop beaconing for the given neighbor
             * @desc Testsystem will stop beaconing for the given neighbor
             * @param p_compName The neighbor
             * @param p_compName The neighbor
             */
             */
            template AcGNEvent m_stopBeaconing(charstring p_compName) := {
            template AcGNEvent m_stopBeaconing := {
                stopBeaconing:= {
                stopBeaconing:= {
                    compName := p_compName
                }
                }
            }
            }
            
            
+0 −1
Original line number Original line Diff line number Diff line
@@ -857,7 +857,6 @@ module LibItsGeoNetworking_TypesAndValues {
        }
        }
        
        
        type record TaStopBeaconing {
        type record TaStopBeaconing {
            charstring compName
        }
        }
        
        
        type record TaStartPassBeaconing {
        type record TaStartPassBeaconing {