From cce79395b5a9f75d3fe1b14bf5df44795d680ca4 Mon Sep 17 00:00:00 2001 From: dimitri staessens Date: Tue, 25 Oct 2016 12:57:15 +0200 Subject: lib: API for accepting flows with QoS --- src/tools/echo/echo_server.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/tools/echo') 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; -- cgit v1.2.3