summaryrefslogtreecommitdiff
path: root/src/backend/taler-merchant-httpd_config.h
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2019-08-17 18:36:14 +0200
committerFlorian Dold <florian.dold@gmail.com>2019-08-17 18:36:25 +0200
commitfa2a82779f457e6fcf593ee457472153b4388a5c (patch)
tree657a104101a55aff026bc86fa6db4eaaa123c5e9 /src/backend/taler-merchant-httpd_config.h
parent844982007393694c52a4d6d47417630a76fa5b94 (diff)
downloadmerchant-fa2a82779f457e6fcf593ee457472153b4388a5c.tar.gz
merchant-fa2a82779f457e6fcf593ee457472153b4388a5c.tar.bz2
merchant-fa2a82779f457e6fcf593ee457472153b4388a5c.zip
implement /config to query e.g. currency
Diffstat (limited to 'src/backend/taler-merchant-httpd_config.h')
-rw-r--r--src/backend/taler-merchant-httpd_config.h43
1 files changed, 43 insertions, 0 deletions
diff --git a/src/backend/taler-merchant-httpd_config.h b/src/backend/taler-merchant-httpd_config.h
new file mode 100644
index 00000000..cff766eb
--- /dev/null
+++ b/src/backend/taler-merchant-httpd_config.h
@@ -0,0 +1,43 @@
+/*
+ This file is part of TALER
+ (C) 2019 Taler Systems SA
+
+ TALER is free software; you can redistribute it and/or modify it under the
+ terms of the GNU 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 General Public License for more details.
+
+ You should have received a copy of the GNU General Public License along with
+ TALER; see the file COPYING. If not, see <http://www.gnu.org/licenses/>
+*/
+/**
+ * @file backend/taler-merchant-httpd_config.h
+ * @brief headers for /config handler
+ * @author Florian Dold
+ */
+#ifndef TALER_MERCHANT_HTTPD_CONFIG_H
+#define TALER_MERCHANT_HTTPD_CONFIG_H
+#include <microhttpd.h>
+#include "taler-merchant-httpd.h"
+
+/**
+ * Manages a /config call.
+ *
+ * @param rh context of the handler
+ * @param connection the MHD connection to handle
+ * @param[in,out] connection_cls the connection's closure (can be updated)
+ * @param upload_data upload data
+ * @param[in,out] upload_data_size number of bytes (left) in @a upload_data
+ * @return MHD result code
+ */
+int
+MH_handler_config (struct TMH_RequestHandler *rh,
+ struct MHD_Connection *connection,
+ void **connection_cls,
+ const char *upload_data,
+ size_t *upload_data_size);
+
+#endif