aboutsummaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2023-07-03 17:51:13 +0200
committerChristian Grothoff <christian@grothoff.org>2023-07-03 17:51:13 +0200
commit290268e9af65467ba8ffc82a196e2666c7796475 (patch)
treec58fd374df9c38339fbb683aa2eb25936fdddb0d /src/include
parent75ea35722be6b39eadbe1918a0cc88a9ecd4b2d5 (diff)
downloadexchange-290268e9af65467ba8ffc82a196e2666c7796475.tar.xz
more work on API atomization
Diffstat (limited to 'src/include')
-rw-r--r--src/include/taler_exchange_service.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/include/taler_exchange_service.h b/src/include/taler_exchange_service.h
index bca75a317..f45834b57 100644
--- a/src/include/taler_exchange_service.h
+++ b/src/include/taler_exchange_service.h
@@ -1062,14 +1062,18 @@ struct TALER_EXCHANGE_WireHandle;
* response are all valid). If the exchange's reply is not
* well-formed, we return an HTTP status code of zero to @a cb.
*
- * @param exchange the exchange handle; the exchange must be ready to operate
+ * @param ctx curl context
+ * @param url exchange base URL
+ * @param keys the keys of the exchange
* @param wire_cb the callback to call when a reply for this request is available
* @param wire_cb_cls closure for the above callback
* @return a handle for this request
*/
struct TALER_EXCHANGE_WireHandle *
TALER_EXCHANGE_wire (
- struct TALER_EXCHANGE_Handle *exchange,
+ struct GNUNET_CURL_Context *ctx,
+ const char *url,
+ struct TALER_EXCHANGE_Keys *keys,
TALER_EXCHANGE_WireCallback wire_cb,
void *wire_cb_cls);