summaryrefslogtreecommitdiff
path: root/src/include/taler_auditor_service.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2023-06-21 08:02:36 +0200
committerChristian Grothoff <christian@grothoff.org>2023-06-21 08:02:36 +0200
commita37a8d34d54cd91fba321a225ae626e8594c6a48 (patch)
tree4403bc4b76adb2974d15e1b33d6a6dfe7e443823 /src/include/taler_auditor_service.h
parent17789253e9194c66bb9ddb081425a35212ac7bf3 (diff)
downloadexchange-a37a8d34d54cd91fba321a225ae626e8594c6a48.tar.gz
exchange-a37a8d34d54cd91fba321a225ae626e8594c6a48.tar.bz2
exchange-a37a8d34d54cd91fba321a225ae626e8594c6a48.zip
-towards API atomization
Diffstat (limited to 'src/include/taler_auditor_service.h')
-rw-r--r--src/include/taler_auditor_service.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/include/taler_auditor_service.h b/src/include/taler_auditor_service.h
index 9d721550b..5ee41c3b1 100644
--- a/src/include/taler_auditor_service.h
+++ b/src/include/taler_auditor_service.h
@@ -211,7 +211,7 @@ struct TALER_AUDITOR_Handle;
* interactions with the auditor will be checked to be signed
* (where appropriate) by the respective master key.
*
- * @param ctx the context
+ * @param ctx the context for CURL requests
* @param url HTTP base URL for the auditor
* @param version_cb function to call with the auditor's version information
* @param version_cb_cls closure for @a version_cb
@@ -412,14 +412,16 @@ typedef void
* auditor's response. If the auditor's reply is not
* well-formed, we return an HTTP status code of zero to @a cb.
*
- * @param auditor the auditor handle; the auditor must be ready to operate
+ * @param ctx the context for CURL requests
+ * @param url HTTP base URL for the auditor
* @param cb the callback to call when a reply for this request is available
* @param cb_cls closure for the above callback
* @return a handle for this request; NULL if the inputs are invalid (i.e.
* signatures fail to verify). In this case, the callback is not called.
*/
struct TALER_AUDITOR_ListExchangesHandle *
-TALER_AUDITOR_list_exchanges (struct TALER_AUDITOR_Handle *auditor,
+TALER_AUDITOR_list_exchanges (struct GNUNET_CURL_Context *ctx,
+ const char *url,
TALER_AUDITOR_ListExchangesResultCallback cb,
void *cb_cls);