From aa9bd90e175209536a5e68021791702cc15b1ce9 Mon Sep 17 00:00:00 2001 From: Fabian Keil Date: Thu, 10 Sep 2020 15:09:11 +0200 Subject: [PATCH] continue_https_chat(): Increment csp->server_connection.requests_sent_total ... after sending a request over a reused connection. --- jcc.c | 1 + 1 file changed, 1 insertion(+) diff --git a/jcc.c b/jcc.c index 4db217f2..1a23902f 100644 --- a/jcc.c +++ b/jcc.c @@ -2528,6 +2528,7 @@ static void continue_https_chat(struct client_state *csp) csp->cfd); return; } + csp->server_connection.requests_sent_total++; handle_established_connection(csp); freez(csp->receive_buffer); } -- 2.39.2