diff options
author | lns <matzeton@googlemail.com> | 2020-06-08 19:16:33 +0200 |
---|---|---|
committer | lns <matzeton@googlemail.com> | 2020-06-08 19:16:33 +0200 |
commit | 44b764cff8f8bcfd10751760d4e304f0a19398a2 (patch) | |
tree | bdacb7c3dcf546f0ce603818defe3e17e0ba9296 /client.c | |
parent | 6c10fd5e3e563791008a22803a536e7436fee073 (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.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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); } } } |