Commit 83522a46 authored by tepelmann's avatar tepelmann
Browse files

Removed explicit usage of PX_SIP_TACK, PX_SIP_TRESP as the component timer is...

Removed explicit usage of PX_SIP_TACK, PX_SIP_TRESP as the component timer is implicitely initialized with the module parameter values.
parent d5d64bb9
Loading
Loading
Loading
Loading
+5 −5
Original line number Original line Diff line number Diff line
@@ -717,7 +717,7 @@ module LibIms_Steps {
            if (p_auth) {
            if (p_auth) {
                // receiving 401 Unauthorized response.
                // receiving 401 Unauthorized response.
                // and Re-send REGISTER request with Authorization header
                // and Re-send REGISTER request with Authorization header
                tc_ack.start(PX_SIP_TACK);
                tc_ack.start;
                alt {
                alt {
                    [] SIPP.receive(mw_Response_Base(c_statusLine401, vc_callId, p_cSeq_s)) -> value vc_response {
                    [] SIPP.receive(mw_Response_Base(c_statusLine401, vc_callId, p_cSeq_s)) -> value vc_response {
                        tc_ack.stop;
                        tc_ack.stop;
@@ -841,7 +841,7 @@ module LibIms_Steps {
                if (PX_SIP_REGISTER_AUTHENTICATION_ENABLED) {
                if (PX_SIP_REGISTER_AUTHENTICATION_ENABLED) {
                    // receiving 401 Unauthorized response.
                    // receiving 401 Unauthorized response.
                    // and Re-send REGISTER request with Authorization header
                    // and Re-send REGISTER request with Authorization header
                    tc_ack.start(PX_SIP_TACK);
                    tc_ack.start;
                    alt {
                    alt {
                        [] SIPP.receive(mw_Response_Base(c_statusLine401, vc_callIdReg, p_cSeq_s)) -> value vc_response {
                        [] SIPP.receive(mw_Response_Base(c_statusLine401, vc_callIdReg, p_cSeq_s)) -> value vc_response {
                            tc_ack.stop;
                            tc_ack.stop;
@@ -1189,7 +1189,7 @@ module LibIms_Steps {
            // Sending of a BYE request to release the call and expect a final response
            // Sending of a BYE request to release the call and expect a final response
            f_SendBYE(m_BYE_Request_IMS(p_requestUri, p_callId, p_cSeq_s, p_from, p_to, vc_via, vc_route));
            f_SendBYE(m_BYE_Request_IMS(p_requestUri, p_callId, p_cSeq_s, p_from, p_to, vc_via, vc_route));


            tc_resp.start(PX_SIP_TRESP);
            tc_resp.start;
            alt {
            alt {
                [] SIPP.receive(mw_Response_Base(mw_statusLine1xx, p_callId, p_cSeq_s)) {
                [] SIPP.receive(mw_Response_Base(mw_statusLine1xx, p_callId, p_cSeq_s)) {
                    repeat;
                    repeat;
@@ -1229,7 +1229,7 @@ module LibIms_Steps {
                f_SendBYE(m_BYE_Request_UE(p_requestUri, p_callId, p_cSeq_s, p_from, valueof(p_to), vc_via, vc_route));
                f_SendBYE(m_BYE_Request_UE(p_requestUri, p_callId, p_cSeq_s, p_from, valueof(p_to), vc_via, vc_route));
            }
            }


            tc_resp.start(PX_SIP_TRESP);
            tc_resp.start;
            alt {
            alt {
                [] SIPP.receive(mw_Response_Base(mw_statusLine1xx, p_callId, p_cSeq_s)) {
                [] SIPP.receive(mw_Response_Base(mw_statusLine1xx, p_callId, p_cSeq_s)) {
                    repeat;
                    repeat;
@@ -1262,7 +1262,7 @@ module LibIms_Steps {
            // Sending of a BYE request to release the call and expect a final response
            // Sending of a BYE request to release the call and expect a final response
            f_SendBYE(m_BYE_Request_UE(p_requestUri, p_callId, p_cSeq_s, p_from, p_to, vc_via, vc_route));
            f_SendBYE(m_BYE_Request_UE(p_requestUri, p_callId, p_cSeq_s, p_from, p_to, vc_via, vc_route));


            tc_resp.start(PX_SIP_TRESP);
            tc_resp.start;
            alt {
            alt {
                [] SIPP.receive(mw_Response_Base(mw_statusLine1xx, p_callId, p_cSeq_s)) {
                [] SIPP.receive(mw_Response_Base(mw_statusLine1xx, p_callId, p_cSeq_s)) {
                    repeat;
                    repeat;