From 23603e2d74298d0fd4df9858003ad3b7798f0254 Mon Sep 17 00:00:00 2001 From: Dimitri Staessens Date: Tue, 12 Aug 2025 22:01:43 +0200 Subject: irmd: Resolve name when flow request arrives This makes the IRMd a bit simpler, and we only need to do the lookup to resolve the name for a hash on the server side only once. The logging is also symmetric now: irmd(II): Allocating flow for 93317 to unicast.1. irmd(II): Flow request arrived for unicast.1. Signed-off-by: Dimitri Staessens --- src/irmd/reg/flow.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/irmd/reg/flow.h') diff --git a/src/irmd/reg/flow.h b/src/irmd/reg/flow.h index 75ada971..b0f0c51c 100644 --- a/src/irmd/reg/flow.h +++ b/src/irmd/reg/flow.h @@ -34,12 +34,12 @@ #include struct reg_flow { - struct list_head next; + struct list_head next; - struct flow_info info; + struct flow_info info; - buffer_t data; - struct timespec t0; + buffer_t data; + struct timespec t0; struct shm_rbuff * n_rb; struct shm_rbuff * n_1_rb; -- cgit v1.2.3