From 806629e64e8231d0c57a80d3b6584094cd6c89bd Mon Sep 17 00:00:00 2001 From: Sander Vrijders Date: Wed, 21 Jun 2017 11:50:19 +0200 Subject: lib, ipcpd, irmd: Add full-fledged QoS This adds more Quality of Service support to Ouroboros. One part is the network specific characteristics such as bandwidth, delay, ... The other part is end-to-end QoS like reliability, window based flow control, ... --- src/irmd/ipcp.h | 2 +- src/irmd/irm_flow.c | 2 ++ src/irmd/irm_flow.h | 2 +- src/irmd/registry.h | 2 +- 4 files changed, 5 insertions(+), 3 deletions(-) (limited to 'src/irmd') diff --git a/src/irmd/ipcp.h b/src/irmd/ipcp.h index 74175f97..fde0428c 100644 --- a/src/irmd/ipcp.h +++ b/src/irmd/ipcp.h @@ -22,7 +22,7 @@ #include #include -#include +#include #include diff --git a/src/irmd/irm_flow.c b/src/irmd/irm_flow.c index 8b85f36f..766c45ca 100644 --- a/src/irmd/irm_flow.c +++ b/src/irmd/irm_flow.c @@ -61,6 +61,8 @@ struct irm_flow * irm_flow_create(pid_t n_api, f->n_rb = shm_rbuff_create(n_api, port_id); if (f->n_rb == NULL) { log_err("Could not create ringbuffer for AP-I %d.", n_api); + pthread_mutex_destroy(&f->state_lock); + pthread_cond_destroy(&f->state_cond); free(f); return NULL; } diff --git a/src/irmd/irm_flow.h b/src/irmd/irm_flow.h index 8902a6ab..223740b7 100644 --- a/src/irmd/irm_flow.h +++ b/src/irmd/irm_flow.h @@ -25,7 +25,7 @@ #include #include -#include +#include #include #include diff --git a/src/irmd/registry.h b/src/irmd/registry.h index 29cefc02..2b887162 100644 --- a/src/irmd/registry.h +++ b/src/irmd/registry.h @@ -27,7 +27,7 @@ #include #include #include -#include +#include #include "api_table.h" #include "apn_table.h" -- cgit v1.2.3