From 5f8e1fb93284e4ea8afdb93dd15a9cbcac698d92 Mon Sep 17 00:00:00 2001 From: "ruben.otto" <ruben.otto@informatik.hs-fulda.de> Date: Fri, 14 Feb 2025 16:28:15 +0100 Subject: [PATCH] chore: update max client amount docs number --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index deba50d..4d9e4cd 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,7 @@ sudo systemctl start sibyl-*.service The client programs that aggregate the desired system data are sending them to the daemon process. This is done via a simple packet, `measurement_t` which is defined in [`common/include/measurement.h`](common/include/measurement.h). It holds the data of a measurement, which can be an integer, unsigned integer, float or double, the type of the data and an id that identifies the sender. -The id is an `uint8_t` and should be unique for each client that sends data, so the maximum amount of clients is 255. +The id is an `uint8_t` and should be unique for each client that sends data, so the maximum amount of clients is 256. The packet is sent via a message queue, which is created by the daemon process. Clients will wait until the message queue is created and then send their data to the daemon. -- GitLab