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 /include | |
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 'include')
-rw-r--r-- | include/ouroboros/dev.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/ouroboros/dev.h b/include/ouroboros/dev.h index 25299ee3..f2e42d03 100644 --- a/include/ouroboros/dev.h +++ b/include/ouroboros/dev.h @@ -34,8 +34,9 @@ int ap_init(char * ap_name); void ap_fini(void); -/* Returns flow descriptor (> 0) and client AE name. */ -int flow_accept(char ** ae_name); +/* Returns flow descriptor (> 0), client AE name and qos spec. */ +int flow_accept(char ** ae_name, + struct qos_spec * qos); int flow_alloc_resp(int fd, int response); |