aboutsummaryrefslogtreecommitdiff
path: root/src/exchange/taler-exchange-httpd_terms.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/exchange/taler-exchange-httpd_terms.h')
-rw-r--r--src/exchange/taler-exchange-httpd_terms.h14
1 files changed, 5 insertions, 9 deletions
diff --git a/src/exchange/taler-exchange-httpd_terms.h b/src/exchange/taler-exchange-httpd_terms.h
index 3cbd36884..9815080fe 100644
--- a/src/exchange/taler-exchange-httpd_terms.h
+++ b/src/exchange/taler-exchange-httpd_terms.h
@@ -1,6 +1,6 @@
1/* 1/*
2 This file is part of TALER 2 This file is part of TALER
3 Copyright (C) 2019 Taler Systems SA 3 Copyright (C) 2019, 2021 Taler Systems SA
4 4
5 TALER is free software; you can redistribute it and/or modify it under the 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 6 terms of the GNU Affero General Public License as published by the Free Software
@@ -32,28 +32,24 @@
32/** 32/**
33 * Handle a "/terms" request. 33 * Handle a "/terms" request.
34 * 34 *
35 * @param rh context of the handler 35 * @param rc request context
36 * @param connection the MHD connection to handle
37 * @param args array of additional options (must be empty for this function) 36 * @param args array of additional options (must be empty for this function)
38 * @return MHD result code 37 * @return MHD result code
39 */ 38 */
40MHD_RESULT 39MHD_RESULT
41TEH_handler_terms (const struct TEH_RequestHandler *rh, 40TEH_handler_terms (struct TEH_RequestContext *rc,
42 struct MHD_Connection *connection,
43 const char *const args[]); 41 const char *const args[]);
44 42
45 43
46/** 44/**
47 * Handle a "/privacy" request. 45 * Handle a "/privacy" request.
48 * 46 *
49 * @param rh context of the handler 47 * @param rc request context
50 * @param connection the MHD connection to handle
51 * @param args array of additional options (must be empty for this function) 48 * @param args array of additional options (must be empty for this function)
52 * @return MHD result code 49 * @return MHD result code
53 */ 50 */
54MHD_RESULT 51MHD_RESULT
55TEH_handler_privacy (const struct TEH_RequestHandler *rh, 52TEH_handler_privacy (struct TEH_RequestContext *rc,
56 struct MHD_Connection *connection,
57 const char *const args[]); 53 const char *const args[]);
58 54
59 55