diff options
author | Florin Coras <fcoras@cisco.com> | 2018-12-03 17:47:26 -0800 |
---|---|---|
committer | Damjan Marion <dmarion@me.com> | 2018-12-04 12:03:06 +0000 |
commit | dc2e251398b196a6fa3b2287f0755330757df02a (patch) | |
tree | 11e7f94b38fff59c6944881a47df93d8959f755a /src/vcl/sock_test_client.c | |
parent | 44cea225e2238a3c549f17f315cd1fbc6978c277 (diff) |
vcl: test refactor and improvements
Change-Id: I92f415bf253d6e051ec9d94ebeb98f081b2a0293
Signed-off-by: Florin Coras <fcoras@cisco.com>
Diffstat (limited to 'src/vcl/sock_test_client.c')
-rw-r--r-- | src/vcl/sock_test_client.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/vcl/sock_test_client.c b/src/vcl/sock_test_client.c index 75913d9deda..bf467981815 100644 --- a/src/vcl/sock_test_client.c +++ b/src/vcl/sock_test_client.c @@ -23,6 +23,7 @@ #include <time.h> #include <arpa/inet.h> #include <vcl/sock_test.h> +#include <fcntl.h> #ifndef VCL_TEST #include <sys/un.h> #endif @@ -647,6 +648,7 @@ sock_test_connect_test_sockets (uint32_t num_test_sockets) errno_val); return tsock->fd; } + fcntl (tsock->fd, F_SETFL, O_NONBLOCK); #ifdef VCL_TEST rv = vppcom_session_connect (tsock->fd, &scm->server_endpt); |