boolean argument removed in GNUNET_CURL_job_add (#6188)

This commit is contained in:
Christian Grothoff 2020-07-16 20:36:51 +02:00
parent b9f1384b52
commit 4fde76049e
No known key found for this signature in database
GPG Key ID: 939E6BE1E29FC3CC
8 changed files with 16 additions and 24 deletions

View File

@ -236,7 +236,6 @@ TALER_AUDITOR_list_exchanges (struct TALER_AUDITOR_Handle *auditor,
ctx = TALER_AUDITOR_handle_to_context_ (auditor);
leh->job = GNUNET_CURL_job_add (ctx,
eh,
GNUNET_NO,
&handle_exchanges_finished,
leh);
return leh;

View File

@ -500,7 +500,6 @@ request_version (void *cls)
(long) 300));
vr->job = GNUNET_CURL_job_add (auditor->ctx,
eh,
GNUNET_NO,
&version_completed_cb,
vr);
auditor->vr = vr;

View File

@ -390,7 +390,6 @@ TALER_EXCHANGE_deposits_get (
ctx = TEAH_handle_to_context (exchange);
dwh->job = GNUNET_CURL_job_add (ctx,
eh,
GNUNET_NO,
&handle_deposit_wtid_finished,
dwh);
return dwh;

View File

@ -2016,11 +2016,10 @@ request_keys (void *cls)
curl_easy_setopt (eh,
CURLOPT_HEADERDATA,
kr));
kr->job = GNUNET_CURL_job_add (exchange->ctx,
eh,
GNUNET_YES,
&keys_completed_cb,
kr);
kr->job = GNUNET_CURL_job_add_with_ct_json (exchange->ctx,
eh,
&keys_completed_cb,
kr);
exchange->kr = kr;
}

View File

@ -484,11 +484,10 @@ TALER_EXCHANGE_link (struct TALER_EXCHANGE_Handle *exchange,
return NULL;
}
ctx = TEAH_handle_to_context (exchange);
lh->job = GNUNET_CURL_job_add (ctx,
eh,
GNUNET_YES,
&handle_link_finished,
lh);
lh->job = GNUNET_CURL_job_add_with_ct_json (ctx,
eh,
&handle_link_finished,
lh);
return lh;
}

View File

@ -301,7 +301,6 @@ TALER_EXCHANGE_reserves_get (struct TALER_EXCHANGE_Handle *exchange,
ctx = TEAH_handle_to_context (exchange);
rgh->job = GNUNET_CURL_job_add (ctx,
eh,
GNUNET_NO,
&handle_reserves_get_finished,
rgh);
return rgh;

View File

@ -390,11 +390,10 @@ TALER_EXCHANGE_transfers_get (
return NULL;
}
ctx = TEAH_handle_to_context (exchange);
wdh->job = GNUNET_CURL_job_add (ctx,
eh,
GNUNET_YES,
&handle_transfers_get_finished,
wdh);
wdh->job = GNUNET_CURL_job_add_with_ct_json (ctx,
eh,
&handle_transfers_get_finished,
wdh);
return wdh;
}

View File

@ -425,11 +425,10 @@ TALER_EXCHANGE_wire (struct TALER_EXCHANGE_Handle *exchange,
return NULL;
}
ctx = TEAH_handle_to_context (exchange);
wh->job = GNUNET_CURL_job_add (ctx,
eh,
GNUNET_YES,
&handle_wire_finished,
wh);
wh->job = GNUNET_CURL_job_add_with_ct_json (ctx,
eh,
&handle_wire_finished,
wh);
return wh;
}