Skip to content
Snippets Groups Projects
Commit 30a05f38 authored by Yann Garcia's avatar Yann Garcia
Browse files

Editorial changes: e_mca_in_port -> e_mcaPortIn

parent 2b1731b3
No related tags found
No related merge requests found
...@@ -2405,7 +2405,7 @@ module OneM2M_Functions { ...@@ -2405,7 +2405,7 @@ module OneM2M_Functions {
//Send response in any case //Send response in any case
v_responsePrimitive := valueof(m_responseNotification(int2000, omit)); v_responsePrimitive := valueof(m_responseNotification(int2000, omit));
v_responsePrimitive.requestIdentifier := vc_request.primitive.requestPrimitive.requestIdentifier; v_responsePrimitive.requestIdentifier := vc_request.primitive.requestPrimitive.requestIdentifier;
f_send(e_mca_in_port, m_response(v_responsePrimitive)); f_send(e_mcaPortIn, m_response(v_responsePrimitive));
} }
[] mcaPortIn.receive(mw_request(mw_notifyResponsePrimitive(?))) -> value vc_request { [] mcaPortIn.receive(mw_request(mw_notifyResponsePrimitive(?))) -> value vc_request {
tc_ac.stop; tc_ac.stop;
...@@ -2413,7 +2413,7 @@ module OneM2M_Functions { ...@@ -2413,7 +2413,7 @@ module OneM2M_Functions {
//Send response in any case //Send response in any case
v_responsePrimitive := valueof(m_responseNotification(int2000, omit)); v_responsePrimitive := valueof(m_responseNotification(int2000, omit));
v_responsePrimitive.requestIdentifier := vc_request.primitive.requestPrimitive.requestIdentifier; v_responsePrimitive.requestIdentifier := vc_request.primitive.requestPrimitive.requestIdentifier;
f_send(e_mca_in_port, m_response(v_responsePrimitive)); f_send(e_mcaPortIn, m_response(v_responsePrimitive));
} }
[] tc_ac.timeout { [] tc_ac.timeout {
setverdict(pass, __SCOPE__ & ": No notification received"); setverdict(pass, __SCOPE__ & ": No notification received");
...@@ -4123,7 +4123,7 @@ module OneM2M_Functions { ...@@ -4123,7 +4123,7 @@ module OneM2M_Functions {
//Send response in any case //Send response in any case
v_response := valueof(m_responseNotification(int2000, omit)); v_response := valueof(m_responseNotification(int2000, omit));
v_response.requestIdentifier := vc_request.primitive.requestPrimitive.requestIdentifier; v_response.requestIdentifier := vc_request.primitive.requestPrimitive.requestIdentifier;
f_send(e_mca_in_port, m_response(v_response)); f_send(e_mcaPortIn, m_response(v_response));
repeat; repeat;
} }
[] mcaPortIn.receive(mw_request(mw_notifyAggregatedNotification)) -> value v_request { [] mcaPortIn.receive(mw_request(mw_notifyAggregatedNotification)) -> value v_request {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment