Commit 13bb8024 authored by schmitting's avatar schmitting
Browse files

STF450: ApplId as parameter in preambles

parent 8d349072
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -866,20 +866,20 @@ group Preambles {
    group preamble_Diameter{
        
        
        function f_preambleDiameterBaseClient()runs on DiameterComponent
        function f_preambleDiameterBaseClient(UInt32 p_authApplicationId)runs on DiameterComponent
        {
            
            f_send_CER(m_CER_basic(vc_originHost, vc_originRealm, vc_hostIPAddress));
            f_send_CER(m_CER_AppId(vc_originHost, vc_originRealm, vc_hostIPAddress, p_authApplicationId));
            f_awaiting_CEA(mw_CEA_dummy);
            f_send_DWR(m_DWR_basic(vc_originHost, vc_originRealm));
            f_awaiting_DWA(mw_DWA_dummy);
        }
        
        function f_preambleDiameterBaseServer()runs on DiameterComponent
        function f_preambleDiameterBaseServer(UInt32 p_authApplicationId)runs on DiameterComponent
        {
            
            f_awaiting_CER(mw_CER_dummy);
            f_send_CEA(m_CEA_basic(vc_originHost, vc_originRealm, vc_hostIPAddress));
            f_send_CEA(m_CEA_AppId(vc_originHost, vc_originRealm, vc_hostIPAddress, p_authApplicationId));
            f_send_DWR(m_DWR_basic(vc_originHost, vc_originRealm));
            f_awaiting_DWA(mw_DWA_dummy);
        }
+2 −2
Original line number Diff line number Diff line
@@ -2208,7 +2208,7 @@ module LibDiameter_Templates {
      group modified_templates {
          
        group modified_request_templates_send {
            template CER_MSG m_CER_Rx_Gx(template Origin_Host_AVP p_originHost,
            template CER_MSG m_CER_AppId(template Origin_Host_AVP p_originHost,
            							 template Origin_Realm_AVP p_originRealm,
            							 Address p_address,
            							 UInt32 p_authApplicationId) modifies m_CER_basic := {
@@ -2228,7 +2228,7 @@ module LibDiameter_Templates {
		} //end group modified_request_templates_receive
		 
        group modified_answer_templates_send {
            template CEA_MSG m_CEA_Rx_Gx(template Origin_Host_AVP p_originHost,
            template CEA_MSG m_CEA_AppId(template Origin_Host_AVP p_originHost,
                                         template Origin_Realm_AVP p_originRealm,
                                         Address p_address,
            							 UInt32 p_authApplicationId) modifies m_CEA_basic := {