- IEC 61850 server: RCB - fixed problem that other client can "steal" reservation

pull/228/head
Michael Zillgith 5 years ago
parent 4871989658
commit 1744616866

@ -1365,6 +1365,11 @@ Reporting_RCBWriteAccessHandler(MmsMapping* self, ReportControl* rc, char* eleme
}
}
if ((rc->reserved) && (rc->clientConnection != connection)) {
retVal = DATA_ACCESS_ERROR_TEMPORARILY_UNAVAILABLE;
goto exit_function;
}
if (strcmp(elementName, "RptEna") == 0) {
if (value->value.boolean == true) {

Loading…
Cancel
Save