summaryrefslogtreecommitdiff
path: root/client.c
diff options
context:
space:
mode:
authorTom Smeding <tom.smeding@gmail.com>2018-07-23 16:23:56 +0200
committerTom Smeding <tom.smeding@gmail.com>2018-07-25 18:07:49 +0200
commitb582cce69853d0a562dd0171914426887e854966 (patch)
tree9b5a1c13eb766b8ab4d406d62fa84ec5303e2b46 /client.c
parent5722c47aa3402f1458da9eec332153a454a540b7 (diff)
Use raw sockets for server
No more buffering, but auto-reply needs to be turned off; see run_server.sh.
Diffstat (limited to 'client.c')
-rw-r--r--client.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/client.c b/client.c
index 527375f..1f8663f 100644
--- a/client.c
+++ b/client.c
@@ -25,6 +25,6 @@ int main(void) {
return 1;
}
- printf("Received length: %zd\nPayload:\n", reply.length);
+ printf("Received length: %zd payload:\n", reply.length);
xxd(reply.data, reply.length);
}