diff options
author | dimitri staessens <dimitri.staessens@intec.ugent.be> | 2016-10-25 12:57:15 +0200 |
---|---|---|
committer | dimitri staessens <dimitri.staessens@intec.ugent.be> | 2016-10-25 12:57:15 +0200 |
commit | cce79395b5a9f75d3fe1b14bf5df44795d680ca4 (patch) | |
tree | ec6df2d106018595f6f9abc6b09c9606c4715a5c /src/ipcpd | |
parent | f33f8f79ee6fd6efe6c868be61ab3addf2ec2730 (diff) | |
download | ouroboros-cce79395b5a9f75d3fe1b14bf5df44795d680ca4.tar.gz ouroboros-cce79395b5a9f75d3fe1b14bf5df44795d680ca4.zip |
lib: API for accepting flows with QoS
Diffstat (limited to 'src/ipcpd')
-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; |