summaryrefslogtreecommitdiff
path: root/src/tools
diff options
context:
space:
mode:
authorDimitri Staessens <dimitri@ouroboros.rocks>2025-09-20 12:37:06 +0200
committerSander Vrijders <sander@ouroboros.rocks>2025-09-24 08:06:47 +0200
commit181739aa4571b8707160b946f1e1e3a92a3c3e3b (patch)
treeeef749949d5b72ebe09d79e457870c24f05c80f8 /src/tools
parent20d1f4156394e76c7d9b08013dd04ce6fbc6f949 (diff)
downloadouroboros-181739aa4571b8707160b946f1e1e3a92a3c3e3b.tar.gz
ouroboros-181739aa4571b8707160b946f1e1e3a92a3c3e3b.zip
irmd: Fix the flow_join operationtestingbe
This fixes a regression in the code path for joining a broadcast Layer. It deprecates the qos parameter on flow_join, as the QoS is implied by the broadcast Layer itself. Signed-off-by: Dimitri Staessens <dimitri@ouroboros.rocks> Signed-off-by: Sander Vrijders <sander@ouroboros.rocks>
Diffstat (limited to 'src/tools')
-rw-r--r--src/tools/obc/obc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tools/obc/obc.c b/src/tools/obc/obc.c
index 462cbea9..778eb8a8 100644
--- a/src/tools/obc/obc.c
+++ b/src/tools/obc/obc.c
@@ -63,7 +63,7 @@ static int reader_main(const char * dst)
printf("Starting a reader.\n");
- fd = flow_join(dst, NULL, NULL);
+ fd = flow_join(dst, NULL);
if (fd < 0) {
printf("Failed to join broadcast.\n");
return -1;
@@ -91,7 +91,7 @@ static int writer_main(const char * dst,
int fd = 0;
size_t len = strlen(message) + 1;
- fd = flow_join(dst, NULL, NULL);
+ fd = flow_join(dst, NULL);
if (fd < 0) {
printf("Failed to join broadcast.\n");
return -1;