diff options
author | Sander Vrijders <sander.vrijders@ugent.be> | 2018-06-08 10:51:00 +0200 |
---|---|---|
committer | Dimitri Staessens <dimitri.staessens@ugent.be> | 2018-06-08 10:59:40 +0200 |
commit | 53df1996a817f270f81cc397edeaf2c0e7929721 (patch) | |
tree | d9755e6472b3077dcb0cfee61ef25f3638e3f9c7 /src/ipcpd | |
parent | b74980761cdcd9a706760ae9a4efb3806ca9bee2 (diff) | |
download | ouroboros-53df1996a817f270f81cc397edeaf2c0e7929721.tar.gz ouroboros-53df1996a817f270f81cc397edeaf2c0e7929721.zip |
ipcpd: Support data QoS cube in UDP shim
This will also allow flows with the data QoS cube to be allocated over
the UDP shim.
Signed-off-by: Sander Vrijders <sander.vrijders@ugent.be>
Signed-off-by: Dimitri Staessens <dimitri.staessens@ugent.be>
Diffstat (limited to 'src/ipcpd')
-rw-r--r-- | src/ipcpd/udp/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ipcpd/udp/main.c b/src/ipcpd/udp/main.c index 2ec4d502..2e59e1a5 100644 --- a/src/ipcpd/udp/main.c +++ b/src/ipcpd/udp/main.c @@ -958,7 +958,7 @@ static int ipcp_udp_flow_alloc(int fd, assert(dst); - if (cube > QOS_CUBE_BE) { + if (cube > QOS_CUBE_DATA) { log_dbg("Unsupported QoS requested."); return -1; } |