From e75b85fe66f481d9a38c55a818a01de870f09f12 Mon Sep 17 00:00:00 2001 From: Philipp Schafft Date: Wed, 31 Oct 2018 09:11:12 +0000 Subject: [PATCH] Update: Added "no-store" to Cache-Control:-header. --- src/util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util.c b/src/util.c index be1b4458..dab8404b 100644 --- a/src/util.c +++ b/src/util.c @@ -795,7 +795,7 @@ ssize_t util_http_build_header(char * out, size_t len, ssize_t offset, currenttime_buffer, contenttype_buffer, (status == 401 ? "WWW-Authenticate: Basic realm=\"Icecast2 Server\"\r\n" : ""), - (cache ? "" : "Cache-Control: no-cache\r\n" + (cache ? "" : "Cache-Control: no-cache, no-store\r\n" "Expires: Mon, 26 Jul 1997 05:00:00 GMT\r\n" "Pragma: no-cache\r\n"), extra_headers,