aboutsummaryrefslogtreecommitdiff
path: root/server.c
diff options
context:
space:
mode:
authorToni Uhlig <matzeton@googlemail.com>2020-06-18 21:56:45 +0200
committerToni Uhlig <matzeton@googlemail.com>2020-06-18 21:56:45 +0200
commit9f743e36909ba5509edaacd3f0e0edee625a72f5 (patch)
tree73e598b8d7d9642ef2503110ad39a8eca122f6c9 /server.c
parent44b764cff8f8bcfd10751760d4e304f0a19398a2 (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 'server.c')
-rw-r--r--server.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/server.c b/server.c
index f0b7b2e..5e1558d 100644
--- a/server.c
+++ b/server.c
@@ -155,6 +155,12 @@ enum recv_return protocol_request_pong(struct connection * const state,
void on_disconnect(struct connection * const state)
{
+ char pretty_bytes_rx[16];
+ char pretty_bytes_tx[16];
+
+ LOG(NOTICE, "Client 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));
(void)state;
}
@@ -172,7 +178,6 @@ static void event_cb(struct bufferevent * bev, short events, void * con)
return;
}
if (events & (BEV_EVENT_EOF | BEV_EVENT_ERROR)) {
- LOG(NOTICE, "Client closed connection");
ev_disconnect(c);
return;
}