diff options
author | Sander Vrijders <sander.vrijders@intec.ugent.be> | 2016-10-26 13:13:43 +0000 |
---|---|---|
committer | Sander Vrijders <sander.vrijders@intec.ugent.be> | 2016-10-26 13:13:43 +0000 |
commit | 696511dcccfdf1dd1f86cc9ea64379f17722afee (patch) | |
tree | 1e62fc32c6b627a505cc1cf6c7af982e48618742 /src/ipcpd/normal/fmgr.c | |
parent | cc64e52dee3559128293a17a669e94acb48f9309 (diff) | |
parent | cce79395b5a9f75d3fe1b14bf5df44795d680ca4 (diff) | |
download | ouroboros-696511dcccfdf1dd1f86cc9ea64379f17722afee.tar.gz ouroboros-696511dcccfdf1dd1f86cc9ea64379f17722afee.zip |
Merged in dstaesse/ouroboros/be-qos (pull request #279)
lib: API for accepting flows with QoS
Diffstat (limited to 'src/ipcpd/normal/fmgr.c')
-rw-r--r-- | src/ipcpd/normal/fmgr.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/ipcpd/normal/fmgr.c b/src/ipcpd/normal/fmgr.c index 46c72691..b5ae40dd 100644 --- a/src/ipcpd/normal/fmgr.c +++ b/src/ipcpd/normal/fmgr.c @@ -125,6 +125,7 @@ static void * fmgr_nm1_acceptor(void * o) { int fd; char * ae_name; + struct qos_spec qs; (void) o; @@ -140,7 +141,7 @@ static void * fmgr_nm1_acceptor(void * o) pthread_rwlock_unlock(&ipcpi.state_lock); - fd = flow_accept(&ae_name); + fd = flow_accept(&ae_name, &qs); if (fd < 0) { LOG_ERR("Failed to accept flow."); continue; |