diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2020-06-18 21:56:45 +0200 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2020-06-18 21:56:45 +0200 |
commit | 9f743e36909ba5509edaacd3f0e0edee625a72f5 (patch) | |
tree | 73e598b8d7d9642ef2503110ad39a8eca122f6c9 /client.c | |
parent | 44b764cff8f8bcfd10751760d4e304f0a19398a2 (diff) |
* capture, prettify and print recv/sent bytes
* error and disconnect if server or client have different WINDOW_SIZE's
* removed additional WINDOW_SIZE pre-processor checks which are not required anymore
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'client.c')
-rw-r--r-- | client.c | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -212,7 +212,15 @@ __attribute__((noreturn)) static void cleanup_and_exit(struct event_base ** cons struct connection ** const state, int exit_code) { + char pretty_bytes_rx[16]; + char pretty_bytes_tx[16]; + LOG(LP_DEBUG, "Cleanup and exit with exit code: %d", exit_code); + if (*state != NULL) { + 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)); + } *state = NULL; cleanup(ev_base, ev_sig, my_keypair); exit(exit_code); |