aboutsummaryrefslogtreecommitdiffstats
path: root/tools
Commit message (Collapse)AuthorAgeFilesLines
* Update certificate generation: keep intermediate files, fix URI formatThomas Vanbesien3 days1-4/+3
| | | | | | | | Stop deleting intermediate PEM and CNF files so they can be reused. Change default application URI from urn:bobink.<name> to urn:localhost:bobink:<name> to follow proper URN syntax (Qt OPC UA rejects the dotted format). Update all config files and test configs to use the new URI format.
* Add comments to build files and shell scripts, fix minor inconsistenciesThomas Vanbesien3 days1-1/+11
| | | | | | | | | | | | | - CMakeLists.txt: add file-level comment, section banners, target docs, and test-section explanation - cmake/BuildDeps.cmake: add file-level comment describing the configure/build/install workflow - tools/generate_certificate.sh: document arguments and outputs in header block, comment set -euo pipefail - src/config.h: move include guard before Doxygen block (match common.h) - src/server_register.c: add comment to empty anonymous-auth block (match client_find_servers.c)
* Keep PEM certificate after generationThomas Vanbesien3 days1-2/+2
| | | | | Stop deleting the PEM certificate so it remains available alongside the DER files. Fix the output listing to show the PEM path.
* Replace CLI arguments with config-file parser and add integration testsThomas Vanbesien3 days1-148/+0
| | | | | | | | Introduce a reusable key=value config parser (config.h/c) and convert all three programs to read their settings from config files instead of positional command-line arguments. Add example config files in config/ and 6 CTest integration tests covering None/Basic256Sha256/Aes128 with anonymous and user authentication. Remove the now-obsolete launch.sh.
* Initial commit: OPC UA discovery projectThomas Vanbesien3 days2-0/+204
CMake-based C project using open62541 for OPC UA discovery. Includes Local Discovery Server, register server, and find servers client with OpenSSL encryption support.