exchange

Base system with REST service to issue digital coins, run by the payment service provider
Log | Files | Refs | Submodules | README | LICENSE

commit a0300689d760ea068f954fcef19590f6ff97455b
parent 67b42cf8eb0ab06eaa1f4d21e0182f7062337994
Author: Christian Grothoff <christian@grothoff.org>
Date:   Mon, 29 Jul 2024 18:28:53 +0200

doxygen fixes

Diffstat:
Msrc/auditor/taler-auditor-httpd_balances-get.h | 21++++++++++-----------
Msrc/auditor/taler-auditor-httpd_deposit-confirmation-get.c | 9---------
Msrc/auditor/taler-auditor-httpd_fee-time-inconsistency-del.h | 40++++++++++++++++++++--------------------
Msrc/auditor/taler-auditor-httpd_fee-time-inconsistency-get.h | 37++++++++++++++++++-------------------
Msrc/auditor/taler-auditor-httpd_historic-denomination-revenue-get.h | 39+++++++++++++++++++--------------------
Msrc/auditor/taler-auditor-httpd_historic-reserve-summary-get.h | 39+++++++++++++++++++--------------------
Msrc/auditor/taler-auditor-httpd_misattribution-in-inconsistency-del.h | 20++++++++++----------
Msrc/auditor/taler-auditor-httpd_misattribution-in-inconsistency-get.h | 39+++++++++++++++++++--------------------
Msrc/auditor/taler-auditor-httpd_progress-get.h | 38+++++++++++++++++++-------------------
Msrc/auditor/taler-auditor-httpd_progress-put.h | 39+++++++++++++++++++--------------------
Msrc/auditor/taler-auditor-httpd_purse-not-closed-inconsistencies-del.h | 42++++++++++++++++++++----------------------
Msrc/auditor/taler-auditor-httpd_purse-not-closed-inconsistencies-get.h | 35++++++++++++++++++-----------------
Msrc/auditor/taler-auditor-httpd_purses-get.h | 39+++++++++++++++++++--------------------
Msrc/auditor/taler-auditor-httpd_refreshes-hanging-del.h | 42++++++++++++++++++++----------------------
Msrc/auditor/taler-auditor-httpd_refreshes-hanging-get.h | 35++++++++++++++++++-----------------
Msrc/auditor/taler-auditor-httpd_reserve-balance-insufficient-inconsistency-del.h | 56++++++++++++++++++++++++--------------------------------
Msrc/auditor/taler-auditor-httpd_reserve-balance-insufficient-inconsistency-get.h | 48++++++++++++++++++++----------------------------
Msrc/auditor/taler-auditor-httpd_reserve-balance-summary-wrong-inconsistency-del.h | 34++++++++++++----------------------
Msrc/auditor/taler-auditor-httpd_reserve-balance-summary-wrong-inconsistency-get.h | 54++++++++++++++++++++++--------------------------------
Msrc/auditor/taler-auditor-httpd_reserve-in-inconsistency-del.h | 21++++++++++-----------
Msrc/auditor/taler-auditor-httpd_reserve-in-inconsistency-get.h | 39+++++++++++++++++++--------------------
Msrc/auditor/taler-auditor-httpd_reserve-not-closed-inconsistency-del.h | 22++++++++++------------
Msrc/auditor/taler-auditor-httpd_reserve-not-closed-inconsistency-get.h | 43+++++++++++++++++++++----------------------
Msrc/auditor/taler-auditor-httpd_reserves-get.h | 39+++++++++++++++++++--------------------
Msrc/auditor/taler-auditor-httpd_row-inconsistency-del.h | 18++++++++++--------
Msrc/auditor/taler-auditor-httpd_row-inconsistency-get.h | 19++++++++++---------
Msrc/auditor/taler-auditor-httpd_row-minor-inconsistencies-del.h | 21++++++++++-----------
Msrc/auditor/taler-auditor-httpd_row-minor-inconsistencies-get.h | 39+++++++++++++++++++--------------------
Msrc/auditor/taler-auditor-httpd_wire-format-inconsistency-del.h | 19++++++++++---------
Msrc/auditor/taler-auditor-httpd_wire-format-inconsistency-get.h | 35++++++++++++++++++-----------------
Msrc/auditor/taler-auditor-httpd_wire-out-inconsistency-del.h | 19++++++++++---------
Msrc/auditor/taler-auditor-httpd_wire-out-inconsistency-get.h | 35++++++++++++++++++-----------------
32 files changed, 510 insertions(+), 565 deletions(-)

diff --git a/src/auditor/taler-auditor-httpd_balances-get.h b/src/auditor/taler-auditor-httpd_balances-get.h @@ -13,8 +13,6 @@ 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/> */ - - #ifndef SRC_TALER_AUDITOR_HTTPD_BALANCES_GET_H #define SRC_TALER_AUDITOR_HTTPD_BALANCES_GET_H @@ -35,15 +33,16 @@ void TEAH_BAD_BALANCES_GET_done (void); /** -* Handle a "/balances" request. -* -* @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 -*/ + * Handle a "/balances" request. + * + * @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 + * @param args NULL-terminated array of remaining parts of the URI broken up at '/' + * @return MHD result code + */ MHD_RESULT TAH_BALANCES_handler_get ( struct TAH_RequestHandler *rh, diff --git a/src/auditor/taler-auditor-httpd_deposit-confirmation-get.c b/src/auditor/taler-auditor-httpd_deposit-confirmation-get.c @@ -101,15 +101,6 @@ add_deposit_confirmation (void *cls, } -/** - * - * @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 - */ MHD_RESULT TAH_DEPOSIT_CONFIRMATION_handler_get (struct TAH_RequestHandler *rh, struct MHD_Connection *connection, diff --git a/src/auditor/taler-auditor-httpd_fee-time-inconsistency-del.h b/src/auditor/taler-auditor-httpd_fee-time-inconsistency-del.h @@ -35,24 +35,24 @@ void TEAH_FEE_TIME_INCONSISTENCY_DELETE_done (void); /** -* Handle a "/fee-time-inconsistency" request. Parses the JSON, and, if -* successful, checks the signatures and stores the result in the DB. -* -* @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 -*/ + * Handle a "/fee-time-inconsistency" request. Parses the JSON, and, if + * successful, checks the signatures and stores the result in the DB. + * + * @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 + * @param args NULL-terminated array of remaining parts of the URI broken up at '/' + * @return MHD result code + */ MHD_RESULT -TAH_FEE_TIME_INCONSISTENCY_handler_delete (struct - TAH_RequestHandler *rh, - struct MHD_Connection * - connection, - void **connection_cls, - const char *upload_data, - size_t *upload_data_size, - const char *const args[]); - -#endif // SRC_TALER_AUDITOR_HTTPD_FEE_TIME_INCONSISTENCY_DEL_H +TAH_FEE_TIME_INCONSISTENCY_handler_delete ( + struct TAH_RequestHandler *rh, + struct MHD_Connection *connection, + void **connection_cls, + const char *upload_data, + size_t *upload_data_size, + const char *const args[]); + +#endif diff --git a/src/auditor/taler-auditor-httpd_fee-time-inconsistency-get.h b/src/auditor/taler-auditor-httpd_fee-time-inconsistency-get.h @@ -13,8 +13,6 @@ 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/> */ - - #ifndef SRC_TALER_AUDITOR_HTTPD_FEE_TIME_INCONSISTENCY_GET_H #define SRC_TALER_AUDITOR_HTTPD_FEE_TIME_INCONSISTENCY_GET_H @@ -35,23 +33,24 @@ void TEAH_FEE_TIME_INCONSISTENCY_GET_done (void); /** -* Handle a "/fee-time-inconsistency" request. -* -* @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 -*/ + * Handle a "/fee-time-inconsistency" request. + * + * @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 + * @param args NULL-terminated array of remaining parts of the URI broken up at '/' + * @return MHD result code + */ MHD_RESULT -TAH_FEE_TIME_INCONSISTENCY_handler_get (struct TAH_RequestHandler *rh, - struct MHD_Connection * - connection, - void **connection_cls, - const char *upload_data, - size_t *upload_data_size, - const char *const args[]); +TAH_FEE_TIME_INCONSISTENCY_handler_get ( + struct TAH_RequestHandler *rh, + struct MHD_Connection *connection, + void **connection_cls, + const char *upload_data, + size_t *upload_data_size, + const char *const args[]); -#endif // SRC_TALER_AUDITOR_HTTPD_FEE_TIME_INCONSISTENCY_GET_H +#endif diff --git a/src/auditor/taler-auditor-httpd_historic-denomination-revenue-get.h b/src/auditor/taler-auditor-httpd_historic-denomination-revenue-get.h @@ -13,9 +13,7 @@ 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/> */ - - - #ifndef SRC_TALER_AUDITOR_HTTPD_HISTORIC_DENOMINATION_REVENUE_GET_H +#ifndef SRC_TALER_AUDITOR_HTTPD_HISTORIC_DENOMINATION_REVENUE_GET_H #define SRC_TALER_AUDITOR_HTTPD_HISTORIC_DENOMINATION_REVENUE_GET_H #include <gnunet/gnunet_util_lib.h> @@ -35,23 +33,24 @@ void TEAH_BAD_HISTORIC_DENOMINATION_REVENUE_GET_done (void); /** -* Handle a "/historic-denomination-revenue" request. -* -* @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 -*/ + * Handle a "/historic-denomination-revenue" request. + * + * @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 + * @param args NULL-terminated array of remaining parts of the URI broken up at '/' + * @return MHD result code + */ MHD_RESULT -TAH_HISTORIC_DENOMINATION_REVENUE_handler_get (struct TAH_RequestHandler *rh, - struct MHD_Connection * - connection, - void **connection_cls, - const char *upload_data, - size_t *upload_data_size, - const char *const args[]); +TAH_HISTORIC_DENOMINATION_REVENUE_handler_get ( + struct TAH_RequestHandler *rh, + struct MHD_Connection *connection, + void **connection_cls, + const char *upload_data, + size_t *upload_data_size, + const char *const args[]); -#endif // SRC_TALER_AUDITOR_HTTPD_HISTORIC_DENOMINATION_REVENUE_GET_H +#endif diff --git a/src/auditor/taler-auditor-httpd_historic-reserve-summary-get.h b/src/auditor/taler-auditor-httpd_historic-reserve-summary-get.h @@ -13,9 +13,7 @@ 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/> */ - - - #ifndef SRC_TALER_AUDITOR_HTTPD_HISTORIC_RESERVE_SUMMARY_GET_H +#ifndef SRC_TALER_AUDITOR_HTTPD_HISTORIC_RESERVE_SUMMARY_GET_H #define SRC_TALER_AUDITOR_HTTPD_HISTORIC_RESERVE_SUMMARY_GET_H #include <gnunet/gnunet_util_lib.h> @@ -35,23 +33,24 @@ void TEAH_BAD_HISTORIC_RESERVE_SUMMARY_GET_done (void); /** -* Handle a "/historic-reserve-summary" request. -* -* @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 -*/ + * Handle a "/historic-reserve-summary" request. + * + * @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 + * @param args NULL-terminated array of remaining parts of the URI broken up at '/' + * @return MHD result code + */ MHD_RESULT -TAH_HISTORIC_RESERVE_SUMMARY_handler_get (struct TAH_RequestHandler *rh, - struct MHD_Connection * - connection, - void **connection_cls, - const char *upload_data, - size_t *upload_data_size, - const char *const args[]); +TAH_HISTORIC_RESERVE_SUMMARY_handler_get ( + struct TAH_RequestHandler *rh, + struct MHD_Connection *connection, + void **connection_cls, + const char *upload_data, + size_t *upload_data_size, + const char *const args[]); -#endif // SRC_TALER_AUDITOR_HTTPD_HISTORIC_RESERVE_SUMMARY_GET_H +#endif diff --git a/src/auditor/taler-auditor-httpd_misattribution-in-inconsistency-del.h b/src/auditor/taler-auditor-httpd_misattribution-in-inconsistency-del.h @@ -43,17 +43,17 @@ TEAH_MISATTRIBUTION_IN_INCONSISTENCY_DELETE_done (void); * @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 + * @param args NULL-terminated array of remaining parts of the URI broken up at '/' * @return MHD result code - */ + */ MHD_RESULT -TAH_MISATTRIBUTION_IN_INCONSISTENCY_handler_delete (struct - TAH_RequestHandler *rh, - struct MHD_Connection * - connection, - void **connection_cls, - const char *upload_data, - size_t *upload_data_size, - const char *const args[]); +TAH_MISATTRIBUTION_IN_INCONSISTENCY_handler_delete ( + struct TAH_RequestHandler *rh, + struct MHD_Connection *connection, + void **connection_cls, + const char *upload_data, + size_t *upload_data_size, + const char *const args[]); -#endif // SRC_TALER_AUDITOR_HTTPD_MISATTRIBUTION_IN_INCONSISTENCY_DEL_H +#endif diff --git a/src/auditor/taler-auditor-httpd_misattribution-in-inconsistency-get.h b/src/auditor/taler-auditor-httpd_misattribution-in-inconsistency-get.h @@ -13,9 +13,7 @@ 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/> */ - - - #ifndef SRC_TALER_AUDITOR_HTTPD_MISATTRIBUTION_IN_INCONSISTENCY_GET_H +#ifndef SRC_TALER_AUDITOR_HTTPD_MISATTRIBUTION_IN_INCONSISTENCY_GET_H #define SRC_TALER_AUDITOR_HTTPD_MISATTRIBUTION_IN_INCONSISTENCY_GET_H #include <gnunet/gnunet_util_lib.h> @@ -35,23 +33,24 @@ void TEAH_BAD_MISATTRIBUTION_IN_INCONSISTENCY_GET_done (void); /** -* Handle a "/misattribution-in-inconsistency" request. -* -* @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 -*/ + * Handle a "/misattribution-in-inconsistency" request. + * + * @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 + * @param args NULL-terminated array of remaining parts of the URI broken up at '/' + * @return MHD result code + */ MHD_RESULT -TAH_MISATTRIBUTION_IN_INCONSISTENCY_handler_get (struct TAH_RequestHandler *rh, - struct MHD_Connection * - connection, - void **connection_cls, - const char *upload_data, - size_t *upload_data_size, - const char *const args[]); +TAH_MISATTRIBUTION_IN_INCONSISTENCY_handler_get ( + struct TAH_RequestHandler *rh, + struct MHD_Connection *connection, + void **connection_cls, + const char *upload_data, + size_t *upload_data_size, + const char *const args[]); -#endif // SRC_TALER_AUDITOR_HTTPD_MISATTRIBUTION_IN_INCONSISTENCY_GET_H +#endif diff --git a/src/auditor/taler-auditor-httpd_progress-get.h b/src/auditor/taler-auditor-httpd_progress-get.h @@ -13,8 +13,6 @@ 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/> */ - - #ifndef SRC_TALER_AUDITOR_HTTPD_PROGRESS_GET_H #define SRC_TALER_AUDITOR_HTTPD_PROGRESS_GET_H @@ -35,23 +33,25 @@ void TEAH_PROGRESS_GET_done (void); /** -* Handle a "/progress" request. -* -* @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 -*/ + * Handle a "/progress" request. + * + * @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 + * @param args NULL-terminated array of remaining parts of the URI broken up at '/' + * @return MHD result code + */ +// FIXME: very bad name! MHD_RESULT -TAH_PROGRESS_handler_get (struct TAH_RequestHandler *rh, - struct MHD_Connection * - connection, - void **connection_cls, - const char *upload_data, - size_t *upload_data_size, - const char *const args[]); +TAH_PROGRESS_handler_get ( + struct TAH_RequestHandler *rh, + struct MHD_Connection *connection, + void **connection_cls, + const char *upload_data, + size_t *upload_data_size, + const char *const args[]); -#endif // SRC_TALER_AUDITOR_HTTPD_PROGRESS_GET_H +#endif diff --git a/src/auditor/taler-auditor-httpd_progress-put.h b/src/auditor/taler-auditor-httpd_progress-put.h @@ -13,8 +13,6 @@ 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/> */ - - #ifndef SRC_TALER_AUDITOR_HTTPD_PROGRESS_PUT_H #define SRC_TALER_AUDITOR_HTTPD_PROGRESS_PUT_H @@ -35,24 +33,25 @@ TEAH_PROGRESS_PUT_done (void); /** -* Handle a "/progress" request. Parses the JSON, and, if -* successful, checks the signatures and stores the result in the DB. -* -* @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 -*/ + * Handle a "/progress" request. Parses the JSON, and, if + * successful, checks the signatures and stores the result in the DB. + * + * @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 + * @param args NULL-terminated array of remaining parts of the URI broken up at '/' + * @return MHD result code + */ MHD_RESULT -TAH_PROGRESS_PUT_handler (struct TAH_RequestHandler *rh, - struct MHD_Connection * - connection, - void **connection_cls, - const char *upload_data, - size_t *upload_data_size, - const char *const args[]); +TAH_PROGRESS_PUT_handler ( + struct TAH_RequestHandler *rh, + struct MHD_Connection *connection, + void **connection_cls, + const char *upload_data, + size_t *upload_data_size, + const char *const args[]); -#endif // SRC_TALER_AUDITOR_HTTPD_PROGRESS_PUT_H +#endif diff --git a/src/auditor/taler-auditor-httpd_purse-not-closed-inconsistencies-del.h b/src/auditor/taler-auditor-httpd_purse-not-closed-inconsistencies-del.h @@ -13,8 +13,6 @@ 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/> */ - - #ifndef SRC_TALER_AUDITOR_HTTPD_PURSE_NOT_CLOSED_INCONSISTENCIES_DEL_H #define SRC_TALER_AUDITOR_HTTPD_PURSE_NOT_CLOSED_INCONSISTENCIES_DEL_H @@ -35,24 +33,24 @@ void TEAH_PURSE_NOT_CLOSED_INCONSISTENCIES_DELETE_done (void); /** -* Handle a "/purse-not-closed-inconsistencies" request. Parses the JSON, and, if -* successful, checks the signatures and stores the result in the DB. -* -* @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 -*/ + * Handle a "/purse-not-closed-inconsistencies" request. Parses the JSON, and, if + * successful, checks the signatures and stores the result in the DB. + * + * @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 + * @param args NULL-terminated array of remaining parts of the URI broken up at '/' + * @return MHD result code + */ MHD_RESULT -TAH_PURSE_NOT_CLOSED_INCONSISTENCIES_handler_delete (struct - TAH_RequestHandler *rh, - struct MHD_Connection * - connection, - void **connection_cls, - const char *upload_data, - size_t *upload_data_size, - const char *const args[]); - -#endif // SRC_TALER_AUDITOR_HTTPD_PURSE_NOT_CLOSED_INCONSISTENCIES_DEL_H +TAH_PURSE_NOT_CLOSED_INCONSISTENCIES_handler_delete ( + struct TAH_RequestHandler *rh, + struct MHD_Connection *connection, + void **connection_cls, + const char *upload_data, + size_t *upload_data_size, + const char *const args[]); + +#endif diff --git a/src/auditor/taler-auditor-httpd_purse-not-closed-inconsistencies-get.h b/src/auditor/taler-auditor-httpd_purse-not-closed-inconsistencies-get.h @@ -35,23 +35,24 @@ void TEAH_PURSE_NOT_CLOSED_INCONSISTENCIES_GET_done (void); /** -* Handle a "/purse-not-closed-inconsistencies" request. -* -* @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 -*/ + * Handle a "/purse-not-closed-inconsistencies" request. + * + * @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 + * @param args NULL-terminated array of remaining parts of the URI broken up at '/' + * @return MHD result code + */ MHD_RESULT -TAH_PURSE_NOT_CLOSED_INCONSISTENCIES_handler_get (struct TAH_RequestHandler *rh, - struct MHD_Connection * - connection, - void **connection_cls, - const char *upload_data, - size_t *upload_data_size, - const char *const args[]); +TAH_PURSE_NOT_CLOSED_INCONSISTENCIES_handler_get ( + struct TAH_RequestHandler *rh, + struct MHD_Connection *connection, + void **connection_cls, + const char *upload_data, + size_t *upload_data_size, + const char *const args[]); -#endif // SRC_TALER_AUDITOR_HTTPD_PURSE_NOT_CLOSED_INCONSISTENCIES_GET_H +#endif diff --git a/src/auditor/taler-auditor-httpd_purses-get.h b/src/auditor/taler-auditor-httpd_purses-get.h @@ -13,9 +13,7 @@ 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/> */ - - - #ifndef SRC_TALER_AUDITOR_HTTPD_PURSES_GET_H +#ifndef SRC_TALER_AUDITOR_HTTPD_PURSES_GET_H #define SRC_TALER_AUDITOR_HTTPD_PURSES_GET_H #include <gnunet/gnunet_util_lib.h> @@ -35,23 +33,24 @@ void TEAH_BAD_PURSES_GET_done (void); /** -* Handle a "/purses" request. -* -* @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 -*/ + * Handle a "/purses" request. + * + * @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 + * @param args NULL-terminated array of remaining parts of the URI broken up at '/' + * @return MHD result code + */ MHD_RESULT -TAH_PURSES_handler_get (struct TAH_RequestHandler *rh, - struct MHD_Connection * - connection, - void **connection_cls, - const char *upload_data, - size_t *upload_data_size, - const char *const args[]); +TAH_PURSES_handler_get ( + struct TAH_RequestHandler *rh, + struct MHD_Connection *connection, + void **connection_cls, + const char *upload_data, + size_t *upload_data_size, + const char *const args[]); -#endif // SRC_TALER_AUDITOR_HTTPD_PURSES_GET_H +#endif diff --git a/src/auditor/taler-auditor-httpd_refreshes-hanging-del.h b/src/auditor/taler-auditor-httpd_refreshes-hanging-del.h @@ -13,8 +13,6 @@ 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/> */ - - #ifndef SRC_TALER_AUDITOR_HTTPD_REFRESHES_HANGING_DEL_H #define SRC_TALER_AUDITOR_HTTPD_REFRESHES_HANGING_DEL_H @@ -35,24 +33,24 @@ void TEAH_REFRESHES_HANGING_DELETE_done (void); /** -* Handle a "/refreshes-hanging" request. Parses the JSON, and, if -* successful, checks the signatures and stores the result in the DB. -* -* @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 -*/ + * Handle a "/refreshes-hanging" request. Parses the JSON, and, if + * successful, checks the signatures and stores the result in the DB. + * + * @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 + * @param args NULL-terminated array of remaining parts of the URI broken up at '/' + * @return MHD result code + */ MHD_RESULT -TAH_REFRESHES_HANGING_handler_delete (struct - TAH_RequestHandler *rh, - struct MHD_Connection * - connection, - void **connection_cls, - const char *upload_data, - size_t *upload_data_size, - const char *const args[]); - -#endif // SRC_TALER_AUDITOR_HTTPD_REFRESHES_HANGING_DEL_H +TAH_REFRESHES_HANGING_handler_delete ( + struct TAH_RequestHandler *rh, + struct MHD_Connection *connection, + void **connection_cls, + const char *upload_data, + size_t *upload_data_size, + const char *const args[]); + +#endif diff --git a/src/auditor/taler-auditor-httpd_refreshes-hanging-get.h b/src/auditor/taler-auditor-httpd_refreshes-hanging-get.h @@ -35,23 +35,24 @@ void TEAH_REFRESHES_HANGING_GET_done (void); /** -* Handle a "/refreshes-hanging" request. -* -* @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 -*/ + * Handle a "/refreshes-hanging" request. + * + * @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 + * @param args NULL-terminated array of remaining parts of the URI broken up at '/' + * @return MHD result code + */ MHD_RESULT -TAH_REFRESHES_HANGING_handler_get (struct TAH_RequestHandler *rh, - struct MHD_Connection * - connection, - void **connection_cls, - const char *upload_data, - size_t *upload_data_size, - const char *const args[]); +TAH_REFRESHES_HANGING_handler_get ( + struct TAH_RequestHandler *rh, + struct MHD_Connection *connection, + void **connection_cls, + const char *upload_data, + size_t *upload_data_size, + const char *const args[]); -#endif // SRC_TALER_AUDITOR_HTTPD_REFRESHES_HANGING_GET_H +#endif diff --git a/src/auditor/taler-auditor-httpd_reserve-balance-insufficient-inconsistency-del.h b/src/auditor/taler-auditor-httpd_reserve-balance-insufficient-inconsistency-del.h @@ -13,10 +13,8 @@ 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/> */ - - -#ifndef SRC_TALER_AUDITOR_HTTPD_RESERVE_BALANCE_INSUFFICIENT_INCONSISTENCY_DEL_H -#define SRC_TALER_AUDITOR_HTTPD_RESERVE_BALANCE_INSUFFICIENT_INCONSISTENCY_DEL_H +#ifndef TALER_AUDITOR_HTTPD_RESERVE_BALANCE_INSUFFICIENT_INCONSISTENCY_DEL_H +#define TALER_AUDITOR_HTTPD_RESERVE_BALANCE_INSUFFICIENT_INCONSISTENCY_DEL_H #include <microhttpd.h> @@ -29,36 +27,30 @@ void TEAH_RESERVE_BALANCE_INSUFFICIENT_INCONSISTENCY_DELETE_init (void); /** -* Shut down subsystem. -*/ + * Shut down subsystem. + */ void TEAH_RESERVE_BALANCE_INSUFFICIENT_INCONSISTENCY_DELETE_done (void); /** -* Handle a "/reserve-balance-insufficient-inconsistency" request. Parses the JSON, and, if -* successful, checks the signatures and stores the result in the DB. -* -* @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 -*/ + * Handle a "/reserve-balance-insufficient-inconsistency" request. Parses the JSON, and, if + * successful, checks the signatures and stores the result in the DB. + * + * @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 + * @param args NULL-terminated array of remaining parts of the URI broken up at '/' + * @return MHD result code + */ MHD_RESULT -TAH_RESERVE_BALANCE_INSUFFICIENT_INCONSISTENCY_handler_delete (struct - TAH_RequestHandler - *rh, - struct - MHD_Connection * - connection, - void ** - connection_cls, - const char * - upload_data, - size_t * - upload_data_size, - const char *const - args[]); - -#endif // SRC_TALER_AUDITOR_HTTPD_RESERVE_BALANCE_INSUFFICIENT_INCONSISTENCY_DEL_H +TAH_RESERVE_BALANCE_INSUFFICIENT_INCONSISTENCY_handler_delete ( + struct TAH_RequestHandler *rh, + struct MHD_Connection *connection, + void **connection_cls, + const char *upload_data, + size_t *upload_data_size, + const char *const args[]); + +#endif diff --git a/src/auditor/taler-auditor-httpd_reserve-balance-insufficient-inconsistency-get.h b/src/auditor/taler-auditor-httpd_reserve-balance-insufficient-inconsistency-get.h @@ -13,10 +13,8 @@ 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/> */ - - -#ifndef SRC_TALER_AUDITOR_HTTPD_RESERVE_BALANCE_INSUFFICIENT_INCONSISTENCY_GET_H -#define SRC_TALER_AUDITOR_HTTPD_RESERVE_BALANCE_INSUFFICIENT_INCONSISTENCY_GET_H +#ifndef TALER_AUDITOR_HTTPD_RESERVE_BALANCE_INSUFFICIENT_INCONSISTENCY_GET_H +#define TALER_AUDITOR_HTTPD_RESERVE_BALANCE_INSUFFICIENT_INCONSISTENCY_GET_H #include <gnunet/gnunet_util_lib.h> #include <microhttpd.h> @@ -35,30 +33,24 @@ void TEAH_RESERVE_BALANCE_INSUFFICIENT_INCONSISTENCY_GET_done (void); /** -* Handle a "/reserve-balance-insufficient-inconsistency" request. -* -* @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 -*/ + * Handle a "/reserve-balance-insufficient-inconsistency" request. + * + * @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 + * @param args NULL-terminated array of remaining parts of the URI broken up at '/' + * @return MHD result code + */ MHD_RESULT -TAH_RESERVE_BALANCE_INSUFFICIENT_INCONSISTENCY_handler_get (struct - TAH_RequestHandler * - rh, - struct - MHD_Connection * - connection, - void ** - connection_cls, - const char * - upload_data, - size_t * - upload_data_size, - const char *const - args[]); +TAH_RESERVE_BALANCE_INSUFFICIENT_INCONSISTENCY_handler_get ( + struct TAH_RequestHandler *rh, + struct MHD_Connection *connection, + void **connection_cls, + const char *upload_data, + size_t *upload_data_size, + const char *const args[]); -#endif // SRC_TALER_AUDITOR_HTTPD_RESERVE_BALANCE_INSUFFICIENT_INCONSISTENCY_GET_H +#endif diff --git a/src/auditor/taler-auditor-httpd_reserve-balance-summary-wrong-inconsistency-del.h b/src/auditor/taler-auditor-httpd_reserve-balance-summary-wrong-inconsistency-del.h @@ -13,12 +13,8 @@ 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/> */ - - -#ifndef \ - SRC_TALER_AUDITOR_HTTPD_RESERVE_BALANCE_SUMMARY_WRONG_INCONSISTENCY_DEL_H -#define \ - SRC_TALER_AUDITOR_HTTPD_RESERVE_BALANCE_SUMMARY_WRONG_INCONSISTENCY_DEL_H +#ifndef TALER_AUDITOR_HTTPD_RESERVE_BALANCE_SUMMARY_WRONG_INCONSISTENCY_DEL_H +#define TALER_AUDITOR_HTTPD_RESERVE_BALANCE_SUMMARY_WRONG_INCONSISTENCY_DEL_H #include <microhttpd.h> @@ -45,23 +41,17 @@ TEAH_RESERVE_BALANCE_SUMMARY_WRONG_INCONSISTENCY_DELETE_done (void); * @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 + * @param args NULL-terminated array of remaining parts of the URI broken up at '/' * @return MHD result code - */ + */ MHD_RESULT -TAH_RESERVE_BALANCE_SUMMARY_WRONG_INCONSISTENCY_handler_delete (struct - TAH_RequestHandler - *rh, - struct - MHD_Connection * - connection, - void ** - connection_cls, - const char * - upload_data, - size_t * - upload_data_size, - const char * - const args[]); +TAH_RESERVE_BALANCE_SUMMARY_WRONG_INCONSISTENCY_handler_delete ( + struct TAH_RequestHandler *rh, + struct MHD_Connection *connection, + void **connection_cls, + const char *upload_data, + size_t *upload_data_size, + const char *const args[]); -#endif // SRC_TALER_AUDITOR_HTTPD_RESERVE_BALANCE_SUMMARY_WRONG_INCONSISTENCY_DEL_H +#endif diff --git a/src/auditor/taler-auditor-httpd_reserve-balance-summary-wrong-inconsistency-get.h b/src/auditor/taler-auditor-httpd_reserve-balance-summary-wrong-inconsistency-get.h @@ -13,20 +13,16 @@ 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/> */ - - - #ifndef \ - SRC_TALER_AUDITOR_HTTPD_RESERVE_BALANCE_SUMMARY_WRONG_INCONSISTENCY_GET_H -#define \ - SRC_TALER_AUDITOR_HTTPD_RESERVE_BALANCE_SUMMARY_WRONG_INCONSISTENCY_GET_H +#ifndef TALER_AUDITOR_HTTPD_RESERVE_BALANCE_SUMMARY_WRONG_INCONSISTENCY_GET_H +#define TALER_AUDITOR_HTTPD_RESERVE_BALANCE_SUMMARY_WRONG_INCONSISTENCY_GET_H #include <gnunet/gnunet_util_lib.h> #include <microhttpd.h> #include "taler-auditor-httpd.h" /** -* Initialize subsystem. -*/ + * Initialize subsystem. + */ void TEAH_RESERVE_BALANCE_SUMMARY_WRONG_INCONSISTENCY_GET_init (void); @@ -37,30 +33,24 @@ void TEAH_BAD_RESERVE_BALANCE_SUMMARY_WRONG_INCONSISTENCY_GET_done (void); /** -* Handle a "/reserve-balance-summary-wrong-inconsistency" request. -* -* @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 -*/ + * Handle a "/reserve-balance-summary-wrong-inconsistency" request. + * + * @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 + * @param args NULL-terminated array of remaining parts of the URI broken up at '/' + * @return MHD result code + */ MHD_RESULT -TAH_RESERVE_BALANCE_SUMMARY_WRONG_INCONSISTENCY_handler_get (struct - TAH_RequestHandler - *rh, - struct - MHD_Connection * - connection, - void ** - connection_cls, - const char * - upload_data, - size_t * - upload_data_size, - const char *const - args[]); +TAH_RESERVE_BALANCE_SUMMARY_WRONG_INCONSISTENCY_handler_get ( + struct TAH_RequestHandler *rh, + struct MHD_Connection *connection, + void **connection_cls, + const char *upload_data, + size_t *upload_data_size, + const char *const args[]); -#endif // SRC_TALER_AUDITOR_HTTPD_RESERVE_BALANCE_SUMMARY_WRONG_INCONSISTENCY_GET_H +#endif diff --git a/src/auditor/taler-auditor-httpd_reserve-in-inconsistency-del.h b/src/auditor/taler-auditor-httpd_reserve-in-inconsistency-del.h @@ -13,8 +13,6 @@ 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/> */ - - #ifndef SRC_TALER_AUDITOR_HTTPD_RESERVE_IN_INCONSISTENCY_DEL_H #define SRC_TALER_AUDITOR_HTTPD_RESERVE_IN_INCONSISTENCY_DEL_H @@ -43,16 +41,17 @@ TEAH_RESERVE_IN_INCONSISTENCY_DELETE_done (void); * @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 + * @param args NULL-terminated array of remaining parts of the URI broken up at '/' * @return MHD result code - */ + */ MHD_RESULT -TAH_RESERVE_IN_INCONSISTENCY_handler_delete (struct TAH_RequestHandler *rh, - struct MHD_Connection * - connection, - void **connection_cls, - const char *upload_data, - size_t *upload_data_size, - const char *const args[]); +TAH_RESERVE_IN_INCONSISTENCY_handler_delete ( + struct TAH_RequestHandler *rh, + struct MHD_Connection *connection, + void **connection_cls, + const char *upload_data, + size_t *upload_data_size, + const char *const args[]); -#endif // SRC_TALER_AUDITOR_HTTPD_RESERVE_IN_INCONSISTENCY_DEL_H +#endif diff --git a/src/auditor/taler-auditor-httpd_reserve-in-inconsistency-get.h b/src/auditor/taler-auditor-httpd_reserve-in-inconsistency-get.h @@ -13,9 +13,7 @@ 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/> */ - - - #ifndef SRC_TALER_AUDITOR_HTTPD_RESERVE_IN_INCONSISTENCY_GET_H +#ifndef SRC_TALER_AUDITOR_HTTPD_RESERVE_IN_INCONSISTENCY_GET_H #define SRC_TALER_AUDITOR_HTTPD_RESERVE_IN_INCONSISTENCY_GET_H #include <gnunet/gnunet_util_lib.h> @@ -35,23 +33,24 @@ void TEAH_BAD_RESERVE_IN_INCONSISTENCY_GET_done (void); /** -* Handle a "/reserve-in-inconsistency" request. -* -* @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 -*/ + * Handle a "/reserve-in-inconsistency" request. + * + * @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 + * @param args NULL-terminated array of remaining parts of the URI broken up at '/' + * @return MHD result code + */ MHD_RESULT -TAH_RESERVE_IN_INCONSISTENCY_handler_get (struct TAH_RequestHandler *rh, - struct MHD_Connection * - connection, - void **connection_cls, - const char *upload_data, - size_t *upload_data_size, - const char *const args[]); +TAH_RESERVE_IN_INCONSISTENCY_handler_get ( + struct TAH_RequestHandler *rh, + struct MHD_Connection *connection, + void **connection_cls, + const char *upload_data, + size_t *upload_data_size, + const char *const args[]); -#endif // SRC_TALER_AUDITOR_HTTPD_RESERVE_IN_INCONSISTENCY_GET_H +#endif diff --git a/src/auditor/taler-auditor-httpd_reserve-not-closed-inconsistency-del.h b/src/auditor/taler-auditor-httpd_reserve-not-closed-inconsistency-del.h @@ -13,8 +13,6 @@ 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/> */ - - #ifndef SRC_TALER_AUDITOR_HTTPD_RESERVE_NOT_CLOSED_INCONSISTENCY_DEL_H #define SRC_TALER_AUDITOR_HTTPD_RESERVE_NOT_CLOSED_INCONSISTENCY_DEL_H @@ -43,17 +41,17 @@ TEAH_RESERVE_NOT_CLOSED_INCONSISTENCY_DELETE_done (void); * @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 + * @param args NULL-terminated array of remaining parts of the URI broken up at '/' * @return MHD result code - */ + */ MHD_RESULT -TAH_RESERVE_NOT_CLOSED_INCONSISTENCY_handler_delete (struct - TAH_RequestHandler *rh, - struct MHD_Connection * - connection, - void **connection_cls, - const char *upload_data, - size_t *upload_data_size, - const char *const args[]); +TAH_RESERVE_NOT_CLOSED_INCONSISTENCY_handler_delete ( + struct TAH_RequestHandler *rh, + struct MHD_Connection *connection, + void **connection_cls, + const char *upload_data, + size_t *upload_data_size, + const char *const args[]); -#endif // SRC_TALER_AUDITOR_HTTPD_RESERVE_NOT_CLOSED_INCONSISTENCY_DEL_H +#endif diff --git a/src/auditor/taler-auditor-httpd_reserve-not-closed-inconsistency-get.h b/src/auditor/taler-auditor-httpd_reserve-not-closed-inconsistency-get.h @@ -13,9 +13,7 @@ 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/> */ - - - #ifndef SRC_TALER_AUDITOR_HTTPD_RESERVE_NOT_CLOSED_INCONSISTENCY_GET_H +#ifndef SRC_TALER_AUDITOR_HTTPD_RESERVE_NOT_CLOSED_INCONSISTENCY_GET_H #define SRC_TALER_AUDITOR_HTTPD_RESERVE_NOT_CLOSED_INCONSISTENCY_GET_H #include <gnunet/gnunet_util_lib.h> @@ -29,29 +27,30 @@ void TEAH_RESERVE_NOT_CLOSED_INCONSISTENCY_GET_init (void); /** -* Shut down subsystem. -*/ + * Shut down subsystem. + */ void TEAH_BAD_RESERVE_NOT_CLOSED_INCONSISTENCY_GET_done (void); /** -* Handle a "/reserve-not-closed-inconsistency" request. -* -* @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 -*/ + * Handle a "/reserve-not-closed-inconsistency" request. + * + * @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 + * @param args NULL-terminated array of remaining parts of the URI broken up at '/' + * @return MHD result code + */ MHD_RESULT -TAH_RESERVE_NOT_CLOSED_INCONSISTENCY_handler_get (struct TAH_RequestHandler *rh, - struct MHD_Connection * - connection, - void **connection_cls, - const char *upload_data, - size_t *upload_data_size, - const char *const args[]); +TAH_RESERVE_NOT_CLOSED_INCONSISTENCY_handler_get ( + struct TAH_RequestHandler *rh, + struct MHD_Connection *connection, + void **connection_cls, + const char *upload_data, + size_t *upload_data_size, + const char *const args[]); -#endif // SRC_TALER_AUDITOR_HTTPD_RESERVE_NOT_CLOSED_INCONSISTENCY_GET_H +#endif diff --git a/src/auditor/taler-auditor-httpd_reserves-get.h b/src/auditor/taler-auditor-httpd_reserves-get.h @@ -13,9 +13,7 @@ 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/> */ - - - #ifndef SRC_TALER_AUDITOR_HTTPD_RESERVES_GET_H +#ifndef SRC_TALER_AUDITOR_HTTPD_RESERVES_GET_H #define SRC_TALER_AUDITOR_HTTPD_RESERVES_GET_H #include <gnunet/gnunet_util_lib.h> @@ -35,23 +33,24 @@ void TEAH_BAD_RESERVES_GET_done (void); /** -* Handle a "/reserves" request. -* -* @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 -*/ + * Handle a "/reserves" request. + * + * @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 + * @param args NULL-terminated array of remaining parts of the URI broken up at '/' + * @return MHD result code + */ MHD_RESULT -TAH_RESERVES_handler_get (struct TAH_RequestHandler *rh, - struct MHD_Connection * - connection, - void **connection_cls, - const char *upload_data, - size_t *upload_data_size, - const char *const args[]); +TAH_RESERVES_handler_get ( + struct TAH_RequestHandler *rh, + struct MHD_Connection *connection, + void **connection_cls, + const char *upload_data, + size_t *upload_data_size, + const char *const args[]); -#endif // SRC_TALER_AUDITOR_HTTPD_RESERVES_GET_H +#endif diff --git a/src/auditor/taler-auditor-httpd_row-inconsistency-del.h b/src/auditor/taler-auditor-httpd_row-inconsistency-del.h @@ -43,15 +43,17 @@ TEAH_ROW_INCONSISTENCY_DELETE_done (void); * @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 + * @param args NULL-terminated array of remaining parts of the URI broken up at '/' * @return MHD result code - */ + */ MHD_RESULT -TAH_ROW_INCONSISTENCY_handler_delete (struct TAH_RequestHandler *rh, - struct MHD_Connection *connection, - void **connection_cls, - const char *upload_data, - size_t *upload_data_size, - const char *const args[]); +TAH_ROW_INCONSISTENCY_handler_delete ( + struct TAH_RequestHandler *rh, + struct MHD_Connection *connection, + void **connection_cls, + const char *upload_data, + size_t *upload_data_size, + const char *const args[]); -#endif // SRC_TALER_AUDITOR_HTTPD_ROW_INCONSISTENCY_DEL_H +#endif diff --git a/src/auditor/taler-auditor-httpd_row-inconsistency-get.h b/src/auditor/taler-auditor-httpd_row-inconsistency-get.h @@ -41,16 +41,17 @@ TEAH_ROW_INCONSISTENCY_GET_done (void); * @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 + * @param args NULL-terminated array of remaining parts of the URI broken up at '/' * @return MHD result code - */ + */ MHD_RESULT -TAH_ROW_INCONSISTENCY_handler_get (struct TAH_RequestHandler *rh, - struct MHD_Connection * - connection, - void **connection_cls, - const char *upload_data, - size_t *upload_data_size, - const char *const args[]); +TAH_ROW_INCONSISTENCY_handler_get ( + struct TAH_RequestHandler *rh, + struct MHD_Connection *connection, + void **connection_cls, + const char *upload_data, + size_t *upload_data_size, + const char *const args[]); -#endif // SRC_TALER_AUDITOR_HTTPD_ROW_INCONSISTENCY_GET_H +#endif diff --git a/src/auditor/taler-auditor-httpd_row-minor-inconsistencies-del.h b/src/auditor/taler-auditor-httpd_row-minor-inconsistencies-del.h @@ -13,8 +13,6 @@ 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/> */ - - #ifndef SRC_TALER_AUDITOR_HTTPD_ROW_MINOR_INCONSISTENCIES_DEL_H #define SRC_TALER_AUDITOR_HTTPD_ROW_MINOR_INCONSISTENCIES_DEL_H @@ -43,16 +41,17 @@ TEAH_ROW_MINOR_INCONSISTENCIES_DELETE_done (void); * @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 + * @param args NULL-terminated array of remaining parts of the URI broken up at '/' * @return MHD result code - */ + */ MHD_RESULT -TAH_ROW_MINOR_INCONSISTENCIES_handler_delete (struct TAH_RequestHandler *rh, - struct MHD_Connection * - connection, - void **connection_cls, - const char *upload_data, - size_t *upload_data_size, - const char *const args[]); +TAH_ROW_MINOR_INCONSISTENCIES_handler_delete ( + struct TAH_RequestHandler *rh, + struct MHD_Connection *connection, + void **connection_cls, + const char *upload_data, + size_t *upload_data_size, + const char *const args[]); -#endif // SRC_TALER_AUDITOR_HTTPD_ROW_MINOR_INCONSISTENCIES_DEL_H +#endif diff --git a/src/auditor/taler-auditor-httpd_row-minor-inconsistencies-get.h b/src/auditor/taler-auditor-httpd_row-minor-inconsistencies-get.h @@ -13,9 +13,7 @@ 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/> */ - - - #ifndef SRC_TALER_AUDITOR_HTTPD_ROW_MINOR_INCONSISTENCIES_GET_H +#ifndef SRC_TALER_AUDITOR_HTTPD_ROW_MINOR_INCONSISTENCIES_GET_H #define SRC_TALER_AUDITOR_HTTPD_ROW_MINOR_INCONSISTENCIES_GET_H #include <gnunet/gnunet_util_lib.h> @@ -35,23 +33,24 @@ void TEAH_BAD_ROW_MINOR_INCONSISTENCIES_GET_done (void); /** -* Handle a "/row-minor-inconsistencies" request. -* -* @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 -*/ + * Handle a "/row-minor-inconsistencies" request. + * + * @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 + * @param args NULL-terminated array of remaining parts of the URI broken up at '/' + * @return MHD result code + */ MHD_RESULT -TAH_ROW_MINOR_INCONSISTENCIES_handler_get (struct TAH_RequestHandler *rh, - struct MHD_Connection * - connection, - void **connection_cls, - const char *upload_data, - size_t *upload_data_size, - const char *const args[]); +TAH_ROW_MINOR_INCONSISTENCIES_handler_get ( + struct TAH_RequestHandler *rh, + struct MHD_Connection *connection, + void **connection_cls, + const char *upload_data, + size_t *upload_data_size, + const char *const args[]); -#endif // SRC_TALER_AUDITOR_HTTPD_ROW_MINOR_INCONSISTENCIES_GET_H +#endif diff --git a/src/auditor/taler-auditor-httpd_wire-format-inconsistency-del.h b/src/auditor/taler-auditor-httpd_wire-format-inconsistency-del.h @@ -43,16 +43,17 @@ TEAH_WIRE_FORMAT_INCONSISTENCY_DELETE_done (void); * @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 + * @param args NULL-terminated array of remaining parts of the URI broken up at '/' * @return MHD result code - */ + */ MHD_RESULT -TAH_WIRE_FORMAT_INCONSISTENCY_handler_delete (struct TAH_RequestHandler *rh, - struct MHD_Connection * - connection, - void **connection_cls, - const char *upload_data, - size_t *upload_data_size, - const char *const args[]); +TAH_WIRE_FORMAT_INCONSISTENCY_handler_delete ( + struct TAH_RequestHandler *rh, + struct MHD_Connection *connection, + void **connection_cls, + const char *upload_data, + size_t *upload_data_size, + const char *const args[]); -#endif // SRC_TALER_AUDITOR_HTTPD_WIRE_FORMAT_INCONSISTENCY_DEL_H +#endif diff --git a/src/auditor/taler-auditor-httpd_wire-format-inconsistency-get.h b/src/auditor/taler-auditor-httpd_wire-format-inconsistency-get.h @@ -35,23 +35,24 @@ void TEAH_BAD_WIRE_FORMAT_INCONSISTENCY_GET_done (void); /** -* Handle a "/wire-format-inconsistency" request. -* -* @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 -*/ + * Handle a "/wire-format-inconsistency" request. + * + * @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 + * @param args NULL-terminated array of remaining parts of the URI broken up at '/' + * @return MHD result code + */ MHD_RESULT -TAH_WIRE_FORMAT_INCONSISTENCY_handler_get (struct TAH_RequestHandler *rh, - struct MHD_Connection * - connection, - void **connection_cls, - const char *upload_data, - size_t *upload_data_size, - const char *const args[]); +TAH_WIRE_FORMAT_INCONSISTENCY_handler_get ( + struct TAH_RequestHandler *rh, + struct MHD_Connection *connection, + void **connection_cls, + const char *upload_data, + size_t *upload_data_size, + const char *const args[]); -#endif // SRC_TALER_AUDITOR_HTTPD_WIRE_FORMAT_INCONSISTENCY_GET_H +#endif diff --git a/src/auditor/taler-auditor-httpd_wire-out-inconsistency-del.h b/src/auditor/taler-auditor-httpd_wire-out-inconsistency-del.h @@ -43,16 +43,17 @@ TEAH_WIRE_OUT_INCONSISTENCY_DELETE_done (void); * @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 + * @param args NULL-terminated array of remaining parts of the URI broken up at '/' * @return MHD result code - */ + */ MHD_RESULT -TAH_WIRE_OUT_INCONSISTENCY_handler_delete (struct TAH_RequestHandler *rh, - struct MHD_Connection * - connection, - void **connection_cls, - const char *upload_data, - size_t *upload_data_size, - const char *const args[]); +TAH_WIRE_OUT_INCONSISTENCY_handler_delete ( + struct TAH_RequestHandler *rh, + struct MHD_Connection *connection, + void **connection_cls, + const char *upload_data, + size_t *upload_data_size, + const char *const args[]); -#endif // SRC_TALER_AUDITOR_HTTPD_WIRE_OUT_INCONSISTENCY_DEL_H +#endif diff --git a/src/auditor/taler-auditor-httpd_wire-out-inconsistency-get.h b/src/auditor/taler-auditor-httpd_wire-out-inconsistency-get.h @@ -35,23 +35,24 @@ void TEAH_BAD_WIRE_OUT_INCONSISTENCY_GET_done (void); /** -* Handle a "/wire-out-inconsistency" request. -* -* @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 -*/ + * Handle a "/wire-out-inconsistency" request. + * + * @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 + * @param args NULL-terminated array of remaining parts of the URI broken up at '/' + * @return MHD result code + */ MHD_RESULT -TAH_WIRE_OUT_INCONSISTENCY_handler_get (struct TAH_RequestHandler *rh, - struct MHD_Connection * - connection, - void **connection_cls, - const char *upload_data, - size_t *upload_data_size, - const char *const args[]); +TAH_WIRE_OUT_INCONSISTENCY_handler_get ( + struct TAH_RequestHandler *rh, + struct MHD_Connection *connection, + void **connection_cls, + const char *upload_data, + size_t *upload_data_size, + const char *const args[]); -#endif // SRC_TALER_AUDITOR_HTTPD_WIRE_OUT_INCONSISTENCY_GET_H +#endif