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 /include | |
parent | f33f8f79ee6fd6efe6c868be61ab3addf2ec2730 (diff) | |
download | ouroboros-cce79395b5a9f75d3fe1b14bf5df44795d680ca4.tar.gz ouroboros-cce79395b5a9f75d3fe1b14bf5df44795d680ca4.zip |
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); |