summaryrefslogtreecommitdiff
path: root/src/exchange/taler-exchange-httpd_link.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/exchange/taler-exchange-httpd_link.h')
-rw-r--r--src/exchange/taler-exchange-httpd_link.h10
1 files changed, 4 insertions, 6 deletions
diff --git a/src/exchange/taler-exchange-httpd_link.h b/src/exchange/taler-exchange-httpd_link.h
index 4c9651a9e..255c0ca57 100644
--- a/src/exchange/taler-exchange-httpd_link.h
+++ b/src/exchange/taler-exchange-httpd_link.h
@@ -31,15 +31,13 @@
/**
* Handle a "/coins/$COIN_PUB/link" request.
*
- * @param rh context of the handler
- * @param connection the MHD connection to handle
- * @param args array of additional options (length: 2, first is the coin_pub, second must be "link")
+ * @param rc request context
+ * @param coin_pub the coin public key
* @return MHD result code
*/
MHD_RESULT
-TEH_handler_link (const struct TEH_RequestHandler *rh,
- struct MHD_Connection *connection,
- const char *const args[2]);
+TEH_handler_link (struct TEH_RequestContext *rc,
+ const struct TALER_CoinSpendPublicKeyP *coin_pub);
#endif