aboutsummaryrefslogtreecommitdiffstats
path: root/readme.md
diff options
context:
space:
mode:
authorThomas Vanbesien <tvanbesi@proton.me>2026-02-18 23:36:35 +0100
committerThomas Vanbesien <tvanbesi@proton.me>2026-02-18 23:36:35 +0100
commit52727a053c45f8d6c634d405742c3289a0be1f78 (patch)
tree6f5c5b33e1e0584d49e496ae88b2123268c5dba5 /readme.md
parent3d30c8499ae37ca0ff837e9deaad359de0297765 (diff)
downloadBobinkCOpcUa-52727a053c45f8d6c634d405742c3289a0be1f78.tar.gz
BobinkCOpcUa-52727a053c45f8d6c634d405742c3289a0be1f78.zip
Rename CMake project and executable targets
Project: OpcUaC → BobinkOpcUaC Targets: ServerLDS → bobink_opcua_discovery_server, ServerRegister → bobink_opcua_server, Client → client
Diffstat (limited to 'readme.md')
-rw-r--r--readme.md18
1 files changed, 9 insertions, 9 deletions
diff --git a/readme.md b/readme.md
index bc5d4c0..efc42bd 100644
--- a/readme.md
+++ b/readme.md
@@ -3,9 +3,9 @@
A small C project that demonstrates OPC UA server discovery using the
[open62541](https://www.open62541.org/) library. Three programs work together:
-- **ServerLDS** — Local Discovery Server that other servers register with
-- **ServerRegister** — a server that periodically registers itself with the LDS
-- **Client** — queries the LDS for servers, lists endpoints, reads the current time, or downloads a server's certificate
+- **bobink_opcua_discovery_server** — Local Discovery Server that other servers register with
+- **bobink_opcua_server** — a server that periodically registers itself with the LDS
+- **client** — queries the LDS for servers, lists endpoints, reads the current time, or downloads a server's certificate
## Prerequisites
@@ -55,23 +55,23 @@ Configuration files live in `tests/` (one directory per test scenario — see
```sh
# 1. Local Discovery Server
-build/ServerLDS tests/secure_user/server_lds.conf
+build/bobink_opcua_discovery_server tests/secure_user/server_lds.conf
# 2. Register Server (connects to the LDS on port 14840)
-build/ServerRegister tests/secure_user/server_register.conf \
+build/bobink_opcua_server tests/secure_user/server_register.conf \
tests/secure_user/server_register_client.conf opc.tcp://localhost:14840
# 3. Find registered servers via the LDS
-build/Client tests/secure_user/client.conf find-servers opc.tcp://localhost:14840
+build/client tests/secure_user/client.conf find-servers opc.tcp://localhost:14840
# 4. List endpoints on the registered server
-build/Client tests/secure_user/client.conf get-endpoints opc.tcp://localhost:14841
+build/client tests/secure_user/client.conf get-endpoints opc.tcp://localhost:14841
# 5. Read the current time from the registered server
-build/Client tests/secure_user/client.conf read-time opc.tcp://localhost:14841
+build/client tests/secure_user/client.conf read-time opc.tcp://localhost:14841
# 6. Download the server's certificate to a local file
-build/Client tests/secure_user/client.conf download-cert opc.tcp://localhost:14841 server.der
+build/client tests/secure_user/client.conf download-cert opc.tcp://localhost:14841 server.der
```
All three programs accept an optional log level as the last argument