feat: add CFI Update

This commit is contained in:
semenov
2026-01-27 12:04:46 +03:00
parent f7c677f498
commit c7f2afe3c2
9 changed files with 31 additions and 5 deletions

View File

@@ -82,6 +82,10 @@ void ProcessParser::slot_read(ClientHandler *client, QByteArray array)
clientBlockAuth(xmlReader,client);
}
else if(xmlReader.name() == "CFIObjects")
{
compareCFIObjects(array,client);
}
else
{
emit sigLogMessage("XmlParser: unrecognized tag");
@@ -597,4 +601,10 @@ void ProcessParser::clientNotify(QXmlStreamReader &xmlReader,ClientHandler *clie
processingSystem->processingClientNotify(client, clientNotify);
}
void ProcessParser::compareCFIObjects(QByteArray array,ClientHandler *clientHandler)
{
QByteArray temp = array;
processingSystem->processingCFIUpdate(temp,clientHandler);
}