From 9616aa8fcae44d5abad1828817ee86fda6a631a2 Mon Sep 17 00:00:00 2001 From: Karl Heyes Date: Tue, 17 Jan 2023 22:29:12 +0000 Subject: [PATCH] missed the connection header. Just for completeness --- src/client.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/client.c b/src/client.c index e9a3d9b6..c596291b 100644 --- a/src/client.c +++ b/src/client.c @@ -478,6 +478,7 @@ static int client_http_setup_req (client_http_headers_t *http, unsigned int flag ice_config_t *config = config_get_config(); client_http_apply_fmt (http, 0, "User-Agent", "%s", config->server_id); config_release_config(); + client_http_apply_fmt (http, 0, "Connection", "Close"); return 0; }