diff options
Diffstat (limited to 'src/irmd/reg/flow.h')
-rw-r--r-- | src/irmd/reg/flow.h | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/src/irmd/reg/flow.h b/src/irmd/reg/flow.h index 75ada971..d1e4811c 100644 --- a/src/irmd/reg/flow.h +++ b/src/irmd/reg/flow.h @@ -25,6 +25,7 @@ #include <ouroboros/list.h> #include <ouroboros/flow.h> +#include <ouroboros/name.h> #include <ouroboros/pthread.h> #include <ouroboros/qos.h> #include <ouroboros/shm_rbuff.h> @@ -34,12 +35,15 @@ #include <time.h> struct reg_flow { - struct list_head next; + struct list_head next; - struct flow_info info; + struct flow_info info; + int response; - buffer_t data; - struct timespec t0; + buffer_t data; + struct timespec t0; + + char name[NAME_SIZE + 1]; struct shm_rbuff * n_rb; struct shm_rbuff * n_1_rb; |