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); ctx = TALER_AUDITOR_handle_to_context_ (auditor);
leh->job = GNUNET_CURL_job_add (ctx, leh->job = GNUNET_CURL_job_add (ctx,
eh, eh,
GNUNET_NO,
&handle_exchanges_finished, &handle_exchanges_finished,
leh); leh);
return leh; return leh;

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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