diff options
Diffstat (limited to 'src/backend/anastasis-httpd_mhd.h')
-rw-r--r-- | src/backend/anastasis-httpd_mhd.h | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/src/backend/anastasis-httpd_mhd.h b/src/backend/anastasis-httpd_mhd.h new file mode 100644 index 0000000..628abfa --- /dev/null +++ b/src/backend/anastasis-httpd_mhd.h | |||
@@ -0,0 +1,61 @@ | |||
1 | /* | ||
2 | This file is part of TALER | ||
3 | Copyright (C) 2014, 2015 GNUnet e.V. and INRIA | ||
4 | |||
5 | TALER is free software; you can redistribute it and/or modify it under the | ||
6 | terms of the GNU Affero General Public License as published by the Free Software | ||
7 | Foundation; either version 3, or (at your option) any later version. | ||
8 | |||
9 | TALER 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 Affero General Public License for more details. | ||
12 | |||
13 | You should have received a copy of the GNU Affero General Public License along with | ||
14 | TALER; see the file COPYING. If not, see <http://www.gnu.org/licenses/> | ||
15 | */ | ||
16 | |||
17 | /** | ||
18 | * @file anastasis-httpd_mhd.h | ||
19 | * @brief helpers for MHD interaction, used to generate simple responses | ||
20 | * @author Florian Dold | ||
21 | * @author Benedikt Mueller | ||
22 | * @author Christian Grothoff | ||
23 | */ | ||
24 | #ifndef ANASTASIS_HTTPD_MHD_H | ||
25 | #define ANASTASIS_HTTPD_MHD_H | ||
26 | #include <gnunet/gnunet_util_lib.h> | ||
27 | #include <microhttpd.h> | ||
28 | #include "anastasis-httpd.h" | ||
29 | |||
30 | |||
31 | /** | ||
32 | * Function to call to handle the request by sending | ||
33 | * back static data from the @a rh. | ||
34 | * | ||
35 | * @param rh context of the handler | ||
36 | * @param connection the MHD connection to handle | ||
37 | * @param[in,out] connection_cls the connection's closure (can be updated) | ||
38 | * @param upload_data upload data | ||
39 | * @param[in,out] upload_data_size number of bytes (left) in @a upload_data | ||
40 | * @param mi merchant backend instance, NULL is allowed in this case! | ||
41 | * @return MHD result code | ||
42 | */ | ||
43 | MHD_RESULT | ||
44 | TMH_MHD_handler_static_response (struct AH_RequestHandler *rh, | ||
45 | struct MHD_Connection *connection); | ||
46 | |||
47 | |||
48 | /** | ||
49 | * Function to call to handle the request by sending | ||
50 | * back a redirect to the AGPL source code. | ||
51 | * | ||
52 | * @param rh context of the handler | ||
53 | * @param connection the MHD connection to handle | ||
54 | * @return MHD result code | ||
55 | */ | ||
56 | MHD_RESULT | ||
57 | TMH_MHD_handler_agpl_redirect (struct AH_RequestHandler *rh, | ||
58 | struct MHD_Connection *connection); | ||
59 | |||
60 | |||
61 | #endif | ||