session: cleanup attach flags
[vpp.git] / src / vcl / sock_test_server.c
index 728a6a7..23fd46d 100644 (file)
@@ -300,7 +300,7 @@ new_client (void)
     }
 
 #ifdef VCL_TEST
-  client_fd = vppcom_session_accept (ssm->listen_fd, &conn->endpt,
+  client_fd = vppcom_session_accept (ssm->listen_fd, &conn->endpt, 0,
                                     -1.0 /* wait forever */ );
   if (client_fd < 0)
     errno = -client_fd;
@@ -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