diff options
Diffstat (limited to 'src/tools/echo/echo_client.c')
-rw-r--r-- | src/tools/echo/echo_client.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/tools/echo/echo_client.c b/src/tools/echo/echo_client.c index 9cf56cee..5c613817 100644 --- a/src/tools/echo/echo_client.c +++ b/src/tools/echo/echo_client.c @@ -33,28 +33,28 @@ int client_main() char * message = "Client says hi!"; ssize_t count = 0; - if(ap_init(CLIENT_AP_NAME)) { - printf("Failed to init AP."); + if (ap_init(CLIENT_AP_NAME)) { + printf("Failed to init AP.\n"); return -1; } fd = flow_alloc(SERVER_AP_NAME, NULL, NULL); if (fd < 0) { - printf("Failed to allocate flow\n"); + printf("Failed to allocate flow.\n"); ap_fini(); return -1; } result = flow_alloc_res(fd); if (result < 0) { - printf("Flow allocation refused\n"); + printf("Flow allocation refused.\n"); flow_dealloc(fd); ap_fini(); return -1; } if (flow_write(fd, message, strlen(message) + 1) == -1) { - printf("Failed to write SDU\n"); + printf("Failed to write SDU.\n"); flow_dealloc(fd); ap_fini(); return -1; @@ -62,7 +62,7 @@ int client_main() count = flow_read(fd, buf, BUF_SIZE); if (count < 0) { - printf("Failed to read SDU\n"); + printf("Failed to read SDU.\n"); flow_dealloc(fd); ap_fini(); return -1; |