summaryrefslogtreecommitdiff
path: root/src/tools/echo
diff options
context:
space:
mode:
authordimitri staessens <dimitri.staessens@intec.ugent.be>2016-10-25 12:57:15 +0200
committerdimitri staessens <dimitri.staessens@intec.ugent.be>2016-10-25 12:57:15 +0200
commitcce79395b5a9f75d3fe1b14bf5df44795d680ca4 (patch)
treeec6df2d106018595f6f9abc6b09c9606c4715a5c /src/tools/echo
parentf33f8f79ee6fd6efe6c868be61ab3addf2ec2730 (diff)
downloadouroboros-cce79395b5a9f75d3fe1b14bf5df44795d680ca4.tar.gz
ouroboros-cce79395b5a9f75d3fe1b14bf5df44795d680ca4.zip
lib: API for accepting flows with QoS
Diffstat (limited to 'src/tools/echo')
-rw-r--r--src/tools/echo/echo_server.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/tools/echo/echo_server.c b/src/tools/echo/echo_server.c
index 070f0ce3..09575364 100644
--- a/src/tools/echo/echo_server.c
+++ b/src/tools/echo/echo_server.c
@@ -40,6 +40,7 @@ int server_main(void)
int client_fd = 0;
char buf[BUF_SIZE];
ssize_t count = 0;
+ struct qos_spec qs;
printf("Starting the server.\n");
@@ -50,7 +51,7 @@ int server_main(void)
}
while (true) {
- client_fd = flow_accept(NULL);
+ client_fd = flow_accept(NULL, &qs);
if (client_fd < 0) {
printf("Failed to accept flow.\n");
break;