diff options
author | Dimitri Staessens <dimitri@ouroboros.rocks> | 2023-03-14 12:50:27 +0100 |
---|---|---|
committer | Sander Vrijders <sander@ouroboros.rocks> | 2023-03-18 17:12:27 +0100 |
commit | 99b4f4d6d6f18321489bae50f1762b29165f7de1 (patch) | |
tree | 980ce47c1e7e84b91403ecc8f8263c8d05dfc1c3 /src/irmd/irm_flow.h | |
parent | 3b2f38aeafa1d6d2976dd5581ef46a5d3b463825 (diff) | |
download | ouroboros-99b4f4d6d6f18321489bae50f1762b29165f7de1.tar.gz ouroboros-99b4f4d6d6f18321489bae50f1762b29165f7de1.zip |
irmd: Use buffer_t for piggybacked data
Instead of passing a const void * and len, it now passes buffer_t to
operations that send piggybacked data (flow_req_arr and flow_reply)
and a buffer_t * for operations that send and receive piggybacked data
(flow_alloc and flow_accept).
Signed-off-by: Dimitri Staessens <dimitri@ouroboros.rocks>
Signed-off-by: Sander Vrijders <sander@ouroboros.rocks>
Diffstat (limited to 'src/irmd/irm_flow.h')
-rw-r--r-- | src/irmd/irm_flow.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/irmd/irm_flow.h b/src/irmd/irm_flow.h index af613d36..a1794f5f 100644 --- a/src/irmd/irm_flow.h +++ b/src/irmd/irm_flow.h @@ -26,6 +26,7 @@ #include <ouroboros/list.h> #include <ouroboros/qos.h> #include <ouroboros/shm_rbuff.h> +#include <ouroboros/utils.h> #include <sys/types.h> #include <pthread.h> @@ -50,8 +51,7 @@ struct irm_flow { qosspec_t qs; time_t mpl; - void * data; - size_t len; + buffer_t data; struct shm_rbuff * n_rb; struct shm_rbuff * n_1_rb; |