aboutsummaryrefslogtreecommitdiff
path: root/client.c
diff options
context:
space:
mode:
Diffstat (limited to 'client.c')
-rw-r--r--client.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/client.c b/client.c
index 29aad13..ecb0be9 100644
--- a/client.c
+++ b/client.c
@@ -106,6 +106,8 @@ int main(int argc, char *argv[])
perror("send");
exit(1);
}
+ // print the amount of bytes sent
+ printf("client: sent %d bytes on a hello call \n", numbytessent);
pthread_t reply_thread;
pthread_create(&reply_thread, NULL, reply_thread_routine, (void*)sockfd);