aboutsummaryrefslogtreecommitdiff
path: root/src/backend/anastasis-httpd_terms.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/backend/anastasis-httpd_terms.h')
-rw-r--r--src/backend/anastasis-httpd_terms.h62
1 files changed, 62 insertions, 0 deletions
diff --git a/src/backend/anastasis-httpd_terms.h b/src/backend/anastasis-httpd_terms.h
new file mode 100644
index 0000000..dc59d41
--- /dev/null
+++ b/src/backend/anastasis-httpd_terms.h
@@ -0,0 +1,62 @@
1/*
2 This file is part of Anastasis
3 Copyright (C) 2020, 2021 Taler Systems SA
4
5 Anastasis is free software; you can redistribute it and/or modify it under the
6 terms of the GNU Lesser General Public License as published by the Free Software
7 Foundation; either version 3, or (at your option) any later version.
8
9 Anastasis is distributed in the hope that it will be useful, but WITHOUT ANY
10 WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
11 A PARTICULAR PURPOSE. See the GNU General Public License for more details.
12
13 You should have received a copy of the GNU General Public License along with
14 Anastasis; see the file COPYING.GPL. If not, see <http://www.gnu.org/licenses/>
15*/
16/**
17 * @file backend/anastasis-httpd_terms.h
18 * @brief headers for /terms handler
19 * @author Christian Grothoff
20 * @author Dennis Neufeld
21 * @author Dominik Meister
22 */
23#ifndef ANASTASIS_HTTPD_TERMS_H
24#define ANASTASIS_HTTPD_TERMS_H
25#include <microhttpd.h>
26#include "anastasis-httpd.h"
27
28/**
29 * Manages a /terms call.
30 *
31 * @param rh context of the handler
32 * @param connection the MHD connection to handle
33 * @return MHD result code
34 */
35MHD_RESULT
36AH_handler_terms (struct AH_RequestHandler *rh,
37 struct MHD_Connection *connection);
38
39
40/**
41 * Handle a "/privacy" request.
42 *
43 * @param rh context of the handler
44 * @param connection the MHD connection to handle
45 * @return MHD result code
46 */
47MHD_RESULT
48AH_handler_privacy (const struct AH_RequestHandler *rh,
49 struct MHD_Connection *connection);
50
51/**
52 * Load our terms of service as per configuration.
53 *
54 * @param cfg configuration to process
55 */
56void
57AH_load_terms (const struct GNUNET_CONFIGURATION_Handle *cfg);
58
59
60#endif
61
62/* end of anastasis-httpd_terms.h */