aboutsummaryrefslogtreecommitdiffstats
path: root/config/server_lds.conf
diff options
context:
space:
mode:
authorThomas Vanbesien <tvanbesi@proton.me>2026-02-17 11:07:37 +0100
committerThomas Vanbesien <tvanbesi@proton.me>2026-02-17 11:07:37 +0100
commita54421dd976fd8081e96c11c2621076876c9986b (patch)
treea7614934364bc692dd94ee13a3ec6d242521194b /config/server_lds.conf
parentd1e229c80a6e51ccc5b21d001271c41d6cda30bf (diff)
downloadBobinkCOpcUa-a54421dd976fd8081e96c11c2621076876c9986b.tar.gz
BobinkCOpcUa-a54421dd976fd8081e96c11c2621076876c9986b.zip
Replace CLI arguments with config-file parser and add integration tests
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.
Diffstat (limited to 'config/server_lds.conf')
-rw-r--r--config/server_lds.conf25
1 files changed, 25 insertions, 0 deletions
diff --git a/config/server_lds.conf b/config/server_lds.conf
new file mode 100644
index 0000000..a30106c
--- /dev/null
+++ b/config/server_lds.conf
@@ -0,0 +1,25 @@
+# ServerLDS configuration
+#
+# Keys:
+# port Server port number
+# applicationUri OPC UA application URI
+# certificate Path to server certificate (.der)
+# privateKey Path to server private key (.der)
+# cleanupTimeout Seconds before stale registrations are removed (must be > 10)
+# authMode "anonymous" or "user"
+# username Username (required when authMode = user)
+# password Password (required when authMode = user)
+# trustList Trusted certificate path (repeat for multiple)
+
+port = 4840
+applicationUri = urn:bobink.ServerLDS
+certificate = certs/ServerLDS_cert.der
+privateKey = certs/ServerLDS_key.der
+cleanupTimeout = 60
+
+authMode = user
+username = user
+password = password
+
+trustList = certs/ServerRegisterClient_cert.der
+trustList = certs/ClientFindServers_cert.der