summaryrefslogtreecommitdiff
path: root/src/backend/taler-merchant-httpd_exchanges.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/backend/taler-merchant-httpd_exchanges.h')
-rw-r--r--src/backend/taler-merchant-httpd_exchanges.h14
1 files changed, 5 insertions, 9 deletions
diff --git a/src/backend/taler-merchant-httpd_exchanges.h b/src/backend/taler-merchant-httpd_exchanges.h
index c52a0ef5..679cb7ce 100644
--- a/src/backend/taler-merchant-httpd_exchanges.h
+++ b/src/backend/taler-merchant-httpd_exchanges.h
@@ -59,13 +59,13 @@ TMH_EXCHANGES_done (void);
* operation.
*
* @param cls closure
- * @param mh handle to the exchange context
+ * @param eh handle to the exchange context
* @param exchange_trusted #GNUNET_YES if this exchange is trusted by config
*/
typedef void
(*TMH_EXCHANGES_FindContinuation)(void *cls,
- struct TALER_EXCHANGE_Handle *mh,
- int exchange_trusted);
+ struct TALER_EXCHANGE_Handle *eh,
+ int exchange_trusted);
/**
@@ -82,15 +82,11 @@ struct TMH_EXCHANGES_FindOperation;
* @param chosen_exchange URI of the exchange we would like to talk to
* @param fc function to call with the handles for the exchange
* @param fc_cls closure for @a fc
- *
- * FIXME: should probably return a value to *cancel* the
- * operation in case MHD connection goes down and needs to
- * free fc_cls.
*/
struct TMH_EXCHANGES_FindOperation *
TMH_EXCHANGES_find_exchange (const char *chosen_exchange,
- TMH_EXCHANGES_FindContinuation fc,
- void *fc_cls);
+ TMH_EXCHANGES_FindContinuation fc,
+ void *fc_cls);
/**