boolean argument removed in GNUNET_CURL_job_add (#6188)
This commit is contained in:
parent
b9f1384b52
commit
4fde76049e
@ -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;
|
||||
|
@ -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;
|
||||
|
@ -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;
|
||||
|
@ -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;
|
||||
}
|
||||
|
||||
|
@ -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;
|
||||
}
|
||||
|
||||
|
@ -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;
|
||||
|
@ -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;
|
||||
}
|
||||
|
||||
|
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user