From 95933156a6d477460a20225209f556208702d55e Mon Sep 17 00:00:00 2001 From: Marcello Stanisci Date: Thu, 16 May 2019 16:58:09 +0200 Subject: Fix compression. The "Content-Encoding: deflate" header is now added from within the compression routine itself, and _not_ from the "exchange handle". This fixed the bank-lib functions as those do not use any exchange handle, and therefore were wrongly sending compressed bodies without adding the mentioned HTTP header. --- src/lib/teah_common.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/lib/teah_common.c') diff --git a/src/lib/teah_common.c b/src/lib/teah_common.c index 8f994ef36..1cbe9df78 100644 --- a/src/lib/teah_common.c +++ b/src/lib/teah_common.c @@ -78,6 +78,10 @@ TEAH_curl_easy_post (struct TEAH_PostContext *ctx, slen = (size_t) cbuf_size; ctx->json_enc = (char *) cbuf; } + GNUNET_assert + (NULL != (ctx->headers = curl_slist_append + (ctx->headers, + "Content-Encoding: deflate"))); #else ctx->json_enc = str; #endif -- cgit v1.2.3