diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2020-07-21 15:56:13 +0200 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2020-07-21 15:56:13 +0200 |
commit | 749a4b2eda0b3b2d7a796530bb64fdfb4b5f3df4 (patch) | |
tree | 54e98714ecea47f9398185ee3f65eb0a43f5ca86 /client.c | |
parent | 50a65c5358beef1cc2859e4bf6e9ae7805c29087 (diff) |
clang-format
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'client.c')
-rw-r--r-- | client.c | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -41,7 +41,9 @@ static void send_data(struct connection * const state) close(data_fd); data_fd = -1; } else { - LOG(NOTICE, "Send DATA: %zd bytes, buffer capacity %0.2f%% unused", bytes_read, + LOG(NOTICE, + "Send DATA: %zd bytes, buffer capacity %0.2f%% unused", + bytes_read, 100.0f - ((float)bytes_read / sizeof(buf)) * 100.0f); } } @@ -217,7 +219,8 @@ __attribute__((noreturn)) static void cleanup_and_exit(struct event_base ** cons LOG(LP_DEBUG, "Cleanup and exit with exit code: %d", exit_code); if (*state != NULL) { - LOG(NOTICE, "Closed connection; received %s; sent %s", + LOG(NOTICE, + "Closed connection; received %s; sent %s", prettify_bytes_with_units(pretty_bytes_rx, sizeof(pretty_bytes_rx), (*state)->total_bytes_recv), prettify_bytes_with_units(pretty_bytes_tx, sizeof(pretty_bytes_tx), (*state)->total_bytes_sent)); } |