Skip to content
Snippets Groups Projects
Commit 65a4cc60 authored by Miguel Angel Reina Ortega's avatar Miguel Angel Reina Ortega
Browse files

Adding reception of aggregated notification to the default alt statement

parent c36ff8cc
No related branches found
No related tags found
1 merge request!63Merge Release4-onwards into Release4
......@@ -3551,7 +3551,16 @@ module OneM2M_Functions {
var ResponsePrimitive v_response;
[] mcaPortIn.receive(mw_request(mw_notify)) -> value v_request {
log(__SCOPE__&": WARNING: Unexpected NOTIFY message received");
log(__SCOPE__&": WARNING: Unexpected NOTIFY (single notification) message received");
//Send response in any case
v_response := valueof(m_responseNotification(int2000, omit));
v_response.requestIdentifier := vc_request.primitive.requestPrimitive.requestIdentifier;
f_send(e_mca_in_port, m_response(v_response));
repeat;
}
[] mcaPortIn.receive(mw_request(mw_notifyAggregatedNotification)) -> value v_request {
log(__SCOPE__&": WARNING: Unexpected NOTIFY (aggregated notification) message received");
//Send response in any case
v_response := valueof(m_responseNotification(int2000, omit));
......
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