aboutsummaryrefslogtreecommitdiff
path: root/client.c
diff options
context:
space:
mode:
authorlns <matzeton@googlemail.com>2020-06-08 19:16:33 +0200
committerlns <matzeton@googlemail.com>2020-06-08 19:16:33 +0200
commit44b764cff8f8bcfd10751760d4e304f0a19398a2 (patch)
treebdacb7c3dcf546f0ce603818defe3e17e0ba9296 /client.c
parent6c10fd5e3e563791008a22803a536e7436fee073 (diff)
switched header->body_size to a u32, means that one can encrypt/decrypt 4.2GB with only one header sent
Diffstat (limited to 'client.c')
-rw-r--r--client.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/client.c b/client.c
index aa58a92..b15a198 100644
--- a/client.c
+++ b/client.c
@@ -41,7 +41,8 @@ static void send_data(struct connection * const state)
close(data_fd);
data_fd = -1;
} else {
- LOG(NOTICE, "Send DATA: %zd", bytes_read);
+ LOG(NOTICE, "Send DATA: %zd bytes, buffer capacity %0.2f%% unused", bytes_read,
+ 100.0f - ((float)bytes_read / sizeof(buf)) * 100.0f);
}
}
}