diff options
author | Dimitri Staessens <dimitri.staessens@ugent.be> | 2018-10-10 11:11:09 +0200 |
---|---|---|
committer | Sander Vrijders <sander.vrijders@ugent.be> | 2018-10-10 13:51:42 +0200 |
commit | a46f96fbfc017963a5578498c93bc85650461020 (patch) | |
tree | 4351e56b0da9f3a6e1920c3296d4f617c582780c /include | |
parent | e8b3e880da69f9ac398bfd90015564ef09e948a3 (diff) | |
download | ouroboros-a46f96fbfc017963a5578498c93bc85650461020.tar.gz ouroboros-a46f96fbfc017963a5578498c93bc85650461020.zip |
ipcpd: Remove stale QoS cubes
There were QoS cubes defined for raw and data flows, which are now run
on the best effort cube.
Signed-off-by: Dimitri Staessens <dimitri.staessens@ugent.be>
Signed-off-by: Sander Vrijders <sander.vrijders@ugent.be>
Diffstat (limited to 'include')
-rw-r--r-- | include/ouroboros/qoscube.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/include/ouroboros/qoscube.h b/include/ouroboros/qoscube.h index e0e93a82..bce9b361 100644 --- a/include/ouroboros/qoscube.h +++ b/include/ouroboros/qoscube.h @@ -26,9 +26,7 @@ #include <ouroboros/qos.h> typedef enum qos_cube { - QOS_CUBE_RAW = 0, - QOS_CUBE_BE, - QOS_CUBE_DATA, + QOS_CUBE_BE = 0, QOS_CUBE_VIDEO, QOS_CUBE_VOICE, QOS_CUBE_MAX |