summaryrefslogtreecommitdiff
path: root/src/exchange/taler-exchange-httpd_kyc-wallet.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2021-10-17 19:02:26 +0200
committerChristian Grothoff <christian@grothoff.org>2021-10-17 19:02:26 +0200
commitadb93355282653438c9850948146cd5171d92aaf (patch)
tree34171cf610ee2be9626802371fd0463bfee64309 /src/exchange/taler-exchange-httpd_kyc-wallet.h
parentb38b51d5e8b71f2fcf30dc6aaef82c1fbcede5f8 (diff)
downloadexchange-adb93355282653438c9850948146cd5171d92aaf.tar.gz
exchange-adb93355282653438c9850948146cd5171d92aaf.tar.bz2
exchange-adb93355282653438c9850948146cd5171d92aaf.zip
integrate /kyc-* handlers with dispatching logic
Diffstat (limited to 'src/exchange/taler-exchange-httpd_kyc-wallet.h')
-rw-r--r--src/exchange/taler-exchange-httpd_kyc-wallet.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/exchange/taler-exchange-httpd_kyc-wallet.h b/src/exchange/taler-exchange-httpd_kyc-wallet.h
index 70ac50949..bd8ae1b08 100644
--- a/src/exchange/taler-exchange-httpd_kyc-wallet.h
+++ b/src/exchange/taler-exchange-httpd_kyc-wallet.h
@@ -30,14 +30,16 @@
* reserve and the signature "reserve_sig" which affirms the operation. If OK,
* a KYC record is created (if missing) and the KYC status returned.
*
- * @param connection request to handle
+ * @param rc request to handle
* @param root uploaded JSON data
+ * @param args empty array
* @return MHD result code
- */
+ */
MHD_RESULT
TEH_handler_kyc_wallet (
- struct MHD_Connection *connection,
- const json_t *root);
+ struct TEH_RequestContext *rc,
+ const json_t *root,
+ const char *const args[]);
#endif