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/bank-lib/bank_api_admin.c | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) (limited to 'src/bank-lib') diff --git a/src/bank-lib/bank_api_admin.c b/src/bank-lib/bank_api_admin.c index b04d3e9a7..0d07be964 100644 --- a/src/bank-lib/bank_api_admin.c +++ b/src/bank-lib/bank_api_admin.c @@ -189,7 +189,6 @@ TALER_BANK_admin_add_incoming (struct GNUNET_CURL_Context *ctx, struct TALER_BANK_AdminAddIncomingHandle *aai; json_t *admin_obj; CURL *eh; - struct curl_slist *headers = NULL; if (NULL == exchange_base_url) { @@ -213,11 +212,13 @@ TALER_BANK_admin_add_incoming (struct GNUNET_CURL_Context *ctx, aai->cb_cls = res_cb_cls; aai->request_url = TALER_BANK_path_to_url_ (bank_base_url, "/admin/add/incoming"); - headers = TALER_BANK_make_auth_header_ (auth); + aai->post_ctx.headers = TALER_BANK_make_auth_header_ (auth); + + GNUNET_assert + (NULL != (aai->post_ctx.headers = curl_slist_append + (aai->post_ctx.headers, + "Content-Type: application/json"))); - GNUNET_assert (NULL != - (headers = curl_slist_append (headers, - "Content-Type: application/json"))); eh = curl_easy_init (); GNUNET_assert (GNUNET_OK == @@ -232,7 +233,7 @@ TALER_BANK_admin_add_incoming (struct GNUNET_CURL_Context *ctx, aai->job = GNUNET_CURL_job_add2 (ctx, eh, - headers, + aai->post_ctx.headers, &handle_admin_add_incoming_finished, aai); return aai; -- cgit v1.2.3