summaryrefslogtreecommitdiff
path: root/src/exchange/taler-exchange-httpd_batch-deposit.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2022-06-29 14:39:45 +0200
committerChristian Grothoff <christian@grothoff.org>2022-06-29 14:39:45 +0200
commitbdc4482ac675bc7e58e017523a8d4f5ed80d8dee (patch)
tree3b6b4ebc9908c19c97b8b753ef63e22c9a150354 /src/exchange/taler-exchange-httpd_batch-deposit.h
parentdc691eb596b61bbf26d9b38cf245c1188f056f51 (diff)
downloadexchange-bdc4482ac675bc7e58e017523a8d4f5ed80d8dee.tar.gz
exchange-bdc4482ac675bc7e58e017523a8d4f5ed80d8dee.tar.bz2
exchange-bdc4482ac675bc7e58e017523a8d4f5ed80d8dee.zip
first skeleton for batch deposits
Diffstat (limited to 'src/exchange/taler-exchange-httpd_batch-deposit.h')
-rw-r--r--src/exchange/taler-exchange-httpd_batch-deposit.h47
1 files changed, 47 insertions, 0 deletions
diff --git a/src/exchange/taler-exchange-httpd_batch-deposit.h b/src/exchange/taler-exchange-httpd_batch-deposit.h
new file mode 100644
index 000000000..359df7d57
--- /dev/null
+++ b/src/exchange/taler-exchange-httpd_batch-deposit.h
@@ -0,0 +1,47 @@
+/*
+ This file is part of TALER
+ Copyright (C) 2014 Taler Systems SA
+
+ TALER is free software; you can redistribute it and/or modify it under the
+ terms of the GNU Affero General Public License as published by the Free Software
+ Foundation; either version 3, or (at your option) any later version.
+
+ TALER is distributed in the hope that it will be useful, but WITHOUT ANY
+ WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
+ A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details.
+
+ You should have received a copy of the GNU Affero General Public License along with
+ TALER; see the file COPYING. If not, see <http://www.gnu.org/licenses/>
+*/
+/**
+ * @file taler-exchange-httpd_batch-deposit.h
+ * @brief Handle /batch-deposit requests
+ * @author Florian Dold
+ * @author Benedikt Mueller
+ * @author Christian Grothoff
+ */
+#ifndef TALER_EXCHANGE_HTTPD_BATCH_DEPOSIT_H
+#define TALER_EXCHANGE_HTTPD_BATCH_DEPOSIT_H
+
+#include <gnunet/gnunet_util_lib.h>
+#include <microhttpd.h>
+#include "taler-exchange-httpd.h"
+
+
+/**
+ * Handle a "/batch-deposit" request. Parses the JSON, and, if
+ * successful, passes the JSON data to #deposit_transaction() to
+ * further check the details of the operation specified. If everything checks
+ * out, this will ultimately lead to the "/batch-deposit" being executed, or
+ * rejected.
+ *
+ * @param connection the MHD connection to handle
+ * @param root uploaded JSON data
+ * @return MHD result code
+ */
+MHD_RESULT
+TEH_handler_batch_deposit (struct MHD_Connection *connection,
+ const json_t *root);
+
+
+#endif