Commit 84277b59 authored by Bostjan Pintar's avatar Bostjan Pintar
Browse files

Minor component name change to align with the documentation.

parent 86f577c5
Loading
Loading
Loading
Loading
+10 −10
Original line number Diff line number Diff line
@@ -40,7 +40,7 @@ module DiameterShDh_TestConfiguration {
         */
        function f_cf_1Sh1Isc_hssUp(
                                out DiameterShDh p_diameterComponent_hss,
                                out ImsComponent v_sipIsc_cscf
                                out ImsComponent v_imsComponents_cscf
        ) runs on DiameterShDh 
        {
            //Variables
@@ -53,16 +53,16 @@ module DiameterShDh_TestConfiguration {
            
            //Create
            p_diameterComponent_hss := DiameterShDh.create ;
            if (PX_SIPsupport) { v_sipIsc_cscf := ImsComponent.create; }
            if (PX_SIPsupport) { v_imsComponents_cscf := ImsComponent.create; }
            
            // Connect mtc sync port
            connect(self:syncPort, self:syncPort);
            // Connect client sync port
            connect(p_diameterComponent_hss:syncPort, self:syncPort) ;
            if (PX_SIPsupport) { connect(v_sipIsc_cscf:syncPort, self:syncPort); }
            if (PX_SIPsupport) { connect(v_imsComponents_cscf:syncPort, self:syncPort); }
            //Map
            map(p_diameterComponent_hss:DIAMP, system:HSS_Sh); // Diameter Init test Configuration
            if (PX_SIPsupport) { map( v_sipIsc_cscf:SIPP, system:CSCF_Isc ); }
            if (PX_SIPsupport) { map( v_imsComponents_cscf:SIPP, system:CSCF_Isc ); }
            
            activate(a_mtc_shutdown());
            
@@ -108,7 +108,7 @@ module DiameterShDh_TestConfiguration {
        function f_cf_1Dh1Sh1Isc_slfUp(
                                out DiameterShDh p_diameterComponent_slf,
                                out DiameterShDh p_diameterComponent_hss,
                                out ImsComponent v_sipIsc_cscf
                                out ImsComponent v_imsComponents_cscf
        ) runs on DiameterShDh 
        {
            //Variables
@@ -121,18 +121,18 @@ module DiameterShDh_TestConfiguration {
            //Create
            p_diameterComponent_slf := DiameterShDh.create ;
            p_diameterComponent_hss := DiameterShDh.create ;
            if (PX_SIPsupport) { v_sipIsc_cscf := ImsComponent.create; }
            if (PX_SIPsupport) { v_imsComponents_cscf := ImsComponent.create; }
            
            // Connect mtc sync port
            connect(self:syncPort, self:syncPort);
            // Connect client sync port
            connect(p_diameterComponent_slf:syncPort, self:syncPort) ;
            connect(p_diameterComponent_hss:syncPort, self:syncPort) ;
            if (PX_SIPsupport) { connect(v_sipIsc_cscf:syncPort, self:syncPort); }
            if (PX_SIPsupport) { connect(v_imsComponents_cscf:syncPort, self:syncPort); }
            //Map
            map(p_diameterComponent_slf:DIAMP, system:SLF_Dh); // Diameter Init test Configuration
            map(p_diameterComponent_hss:DIAMP, system:HSS_Sh); // Diameter Init test Configuration
            if (PX_SIPsupport) { map( v_sipIsc_cscf:SIPP, system:CSCF_Isc ); }
            if (PX_SIPsupport) { map( v_imsComponents_cscf:SIPP, system:CSCF_Isc ); }
            
            
            activate(a_mtc_shutdown());
@@ -181,7 +181,7 @@ module DiameterShDh_TestConfiguration {
         */
        function f_cf_1Sh1Isc_hssDown(
                                out DiameterShDh p_diameterComponent_hss,
                                out ImsComponent v_sipIsc_cscf
                                out ImsComponent v_imsComponents_cscf
        ) runs on DiameterShDh 
        {
            // Deactivate all
@@ -220,7 +220,7 @@ module DiameterShDh_TestConfiguration {
        function f_cf_1Dh1Sh1Isc_slfDown(
                                out DiameterShDh p_diameterComponent_slf,
                                out DiameterShDh p_diameterComponent_hss,
                                out ImsComponent v_sipIsc_cscf
                                out ImsComponent v_imsComponents_cscf
                                
        ) runs on DiameterShDh 
        {