diff options
Diffstat (limited to 'client.c')
-rw-r--r-- | client.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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); |