diff options
author | Dave Wallace <dwallacelf@gmail.com> | 2017-11-24 21:44:06 -0500 |
---|---|---|
committer | Dave Wallace <dwallacelf@gmail.com> | 2017-11-25 03:36:10 -0500 |
commit | ee45d41a10c3459fc11e7d037fc411fd4cdfd495 (patch) | |
tree | 60c245db1cb84c8c6780e00499b0808b339ff7ca /src/vcl/sock_test_server.c | |
parent | 60d48bbd13649133e51cf56e072c11305c661797 (diff) |
VCL: improve debug output
- Refactor debug output to include vpp handle associated
with session id where appropriate.
- Fix vcom_connect return value on error.
- Refactor vcom_socket_epoll_pwait().
- Fix sock_test_server/client connect failure handling.
Change-Id: I2649596aa4b8a77d9bd876409a76810cb2785797
Signed-off-by: Dave Wallace <dwallacelf@gmail.com>
Diffstat (limited to 'src/vcl/sock_test_server.c')
-rw-r--r-- | src/vcl/sock_test_server.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/vcl/sock_test_server.c b/src/vcl/sock_test_server.c index ed36c7a6acc..23fd46df012 100644 --- a/src/vcl/sock_test_server.c +++ b/src/vcl/sock_test_server.c @@ -315,6 +315,7 @@ new_client (void) errno_val = errno; perror ("ERROR in new_client()"); fprintf (stderr, "ERROR: accept failed (errno = %d)!\n", errno_val); + return; } printf ("SERVER: Got a connection -- fd = %d (0x%08x)!\n", @@ -681,6 +682,7 @@ main (int argc, char **argv) close (client_fd); #endif conn_pool_free (conn); + printf ("SERVER: Closed client fd %d\n", client_fd); #if ! SOCK_SERVER_USE_EPOLL if (ssm->nfds == (ssm->listen_fd + 1)) #else |