Commit b72d33d4 authored by pintar's avatar pintar
Browse files

Corrections

parent 1d09b788
Loading
Loading
Loading
Loading
+6 −6
Original line number Original line Diff line number Diff line
@@ -33,7 +33,7 @@
        runs on DiameterComponent {
        runs on DiameterComponent {
            
            
            //Defaults
            //Defaults
    		vc_def_catchSyncStop_diameter := activate(a_Sip_catchSyncStop());
    		vc_def_catchSyncStop_diameter := activate(a_diamater_catchSyncStop());
    		vc_default_diameter := activate (a_diameter_default());
    		vc_default_diameter := activate (a_diameter_default());
    		
    		
    		//Base LibDiameter init function if there will be any base initialisation
    		//Base LibDiameter init function if there will be any base initialisation
@@ -83,7 +83,7 @@
                f_preambleClient();
                f_preambleClient();
            }
            }
            f_DiameterRx_init();
            f_DiameterRx_init();
            f_preambleDiameterBase();
            f_preambleDiameterBaseClient();
        }
        }
       
       
        function f_preamble_PCRF() runs on DiameterComponent
        function f_preamble_PCRF() runs on DiameterComponent
@@ -93,7 +93,7 @@
                f_preambleServer();
                f_preambleServer();
            }
            }
            f_DiameterRx_init();
            f_DiameterRx_init();
            f_preambleDiameterBase();
            f_preambleDiameterBaseServer();
        }
        }
    }// end group Preambles
    }// end group Preambles
    
    
@@ -139,15 +139,15 @@
    	* @desc	This default handles receiving of the sync server
    	* @desc	This default handles receiving of the sync server
    	*		STOP message and calls the RT HUT postamble. (copy from common lib)
    	*		STOP message and calls the RT HUT postamble. (copy from common lib)
    	*/	
    	*/	
    	altstep a_Sip_catchSyncStop() runs on DiameterComponent 
    	altstep a_diamater_catchSyncStop() runs on DiameterComponent 
    	{
    	{
    		[]	syncPort.receive(m_syncServerStop)
    		[]	syncPort.receive(m_syncServerStop)
    		{
    		{
    			tc_sync.stop ;
    			tc_sync.stop ;
    			log("**** a_Sip_catchSyncStop: Test component received STOP signal from MTC - going to IDLE state **** ");
    			log("**** a_diameter_catchSyncStop: Test component received STOP signal from MTC - going to IDLE state **** ");
    			syncPort.send(m_syncClientStop);
    			syncPort.send(m_syncClientStop);
    			f_terminate_diameter_component();
    			f_terminate_diameter_component();
    			log("**** a_Sip_catchSyncStop: TEST COMPONENT NOW STOPPING ITSELF! **** ") ;
    			log("**** a_diameter_catchSyncStop: TEST COMPONENT NOW STOPPING ITSELF! **** ") ;
    			setverdict(inconc);
    			setverdict(inconc);
    			stop ;
    			stop ;
    		}
    		}