diff options
author | sotech117 <michael_foiani@brown.edu> | 2023-09-18 18:52:24 -0400 |
---|---|---|
committer | sotech117 <michael_foiani@brown.edu> | 2023-09-18 18:52:24 -0400 |
commit | 186915db036f06a604883b644e40eaf377aedadf (patch) | |
tree | 919b77b62ab359f53ca836fc3304d04c4f4fa5b1 /client.c | |
parent | 8a25dcda67683817ddd55b669111f7dd8e3107ef (diff) |
got it to work, not sure on protocol.
Diffstat (limited to 'client.c')
-rw-r--r-- | client.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -156,7 +156,7 @@ void *reply_thread_routine(void* args) { printf("client: replyType: %d, stringSize: %d\n", buf[0], buf[1]); // print the while buffer by char for (int i = 0; i < recvbytes; i++) { - printf("%d", buf[i]); + printf("%c ", buf[i]); } struct Reply reply; |