aboutsummaryrefslogtreecommitdiffstats
path: root/src/OpcUaClient.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Fix auto-accept certificate blocking for 30s on event loop timeoutThomas Vanbesien2026-03-091-5/+8
| | | | | | | | When acceptCertificate() was called synchronously from the certificateTrustRequested signal handler, m_certLoop was still nullptr so the quit() call was a no-op. The event loop then blocked for the full 30-second timeout. Skip the event loop when m_certAccepted is already set by a synchronous handler.
* Rename classes to OpcUa* prefix, replace BobinkNode with OpcUaMonitoredNode ↵Thomas Vanbesien2026-02-201-0/+569
boilerplate Rename BobinkAuth → OpcUaAuth, BobinkClient → OpcUaClient (C++ class names only; QML module URI and singleton name stay as Bobink). Remove BobinkNode (QQuickItem-based) and add OpcUaMonitoredNode skeleton using QObject + QQmlParserStatus, following Qt convention for non-visual QML types.