exchange

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

commit c5ca2c7fa8634d51322e40f653b70868dd0a1371
parent 1fc05366655596f0db3b3040fdbee99cc83835cf
Author: Christian Grothoff <christian@grothoff.org>
Date:   Mon,  2 Dec 2024 08:40:43 +0100

-fix doxygen issues

Diffstat:
Msrc/exchange/taler-exchange-aggregator.c | 3---
Msrc/exchange/taler-exchange-httpd_legitimization-measures-get.h | 2+-
Msrc/include/taler_exchangedb_lib.h | 3+++
Msrc/include/taler_kyclogic_lib.h | 6+++---
Msrc/kyclogic/taler-exchange-kyc-tester.c | 1+
Msrc/util/secmod_cs.h | 2+-
Msrc/util/secmod_eddsa.h | 2+-
Msrc/util/secmod_rsa.c | 10+---------
Msrc/util/secmod_rsa.h | 2+-
9 files changed, 12 insertions(+), 19 deletions(-)

diff --git a/src/exchange/taler-exchange-aggregator.c b/src/exchange/taler-exchange-aggregator.c @@ -992,9 +992,6 @@ check_legitimization_satisfied (struct AggregationUnit *au) * (or rollback) depending on our return value. * * @param[in,out] au aggregation unit to work on - * @return #GNUNET_OK if aggregation succeeded, - * #GNUNET_NO to rollback and try again (serialization issue) - * #GNUNET_SYSERR hard error, terminate aggregator process */ static void do_aggregate (struct AggregationUnit *au) diff --git a/src/exchange/taler-exchange-httpd_legitimization-measures-get.h b/src/exchange/taler-exchange-httpd_legitimization-measures-get.h @@ -14,7 +14,7 @@ TALER; see the file COPYING. If not, see <http://www.gnu.org/licenses/> */ /** - * @file taler-exchange-httpd_legitimization-measures.h + * @file taler-exchange-httpd_legitimization-measures-get.h * @brief Handle /aml/$OFFICER_PUB/legitimizations requests * @author Christian Grothoff */ diff --git a/src/include/taler_exchangedb_lib.h b/src/include/taler_exchangedb_lib.h @@ -268,6 +268,9 @@ TALER_EXCHANGEDB_current_rule_builder (void *cls); * @param provider_name name of the provider that provided the attributes * @param provider_user_id set to user ID at the provider, or NULL if not supported or unknown * @param provider_legitimization_id set to legitimization process ID at the provider, or NULL if not supported or unknown + * @param attributes set of KYC attributes, possibly NULL + * @param attribute_key key to use to encrypt the KYC attributes + * @param birthday birthday of the user, 0 for unknown * @param expiration until when is the KYC check valid * @param account_id hash of account the result is about * @param apr AML program result to persist diff --git a/src/include/taler_kyclogic_lib.h b/src/include/taler_kyclogic_lib.h @@ -996,7 +996,7 @@ TALER_KYCLOGIC_run_aml_program ( unsigned int measure_index, const json_t *attributes, TALER_KYCLOGIC_HistoryBuilderCallback current_rules_cb, - void *current_rules_cls, + void *current_rules_cb_cls, TALER_KYCLOGIC_HistoryBuilderCallback aml_history_cb, void *aml_history_cb_cls, TALER_KYCLOGIC_HistoryBuilderCallback kyc_history_cb, @@ -1028,7 +1028,7 @@ TALER_KYCLOGIC_run_aml_program2 ( const json_t *attributes, const json_t *context, TALER_KYCLOGIC_HistoryBuilderCallback current_rules_cb, - void *current_rules_cls, + void *current_rules_cb_cls, TALER_KYCLOGIC_HistoryBuilderCallback aml_history_cb, void *aml_history_cb_cls, TALER_KYCLOGIC_HistoryBuilderCallback kyc_history_cb, @@ -1060,7 +1060,7 @@ TALER_KYCLOGIC_run_aml_program3 ( const struct TALER_KYCLOGIC_Measure *measure, const json_t *attributes, TALER_KYCLOGIC_HistoryBuilderCallback current_rules_cb, - void *current_rules_cls, + void *current_rules_cb_cls, TALER_KYCLOGIC_HistoryBuilderCallback aml_history_cb, void *aml_history_cb_cls, TALER_KYCLOGIC_HistoryBuilderCallback kyc_history_cb, diff --git a/src/kyclogic/taler-exchange-kyc-tester.c b/src/kyclogic/taler-exchange-kyc-tester.c @@ -719,6 +719,7 @@ handler_kyc_webhook_post ( * * @param cls closure with the `struct ProofRequestState` * @param status KYC status + * @param provider_name name of the KYC provider * @param provider_user_id set to user ID at the provider, or NULL if not supported or unknown * @param provider_legitimization_id set to legitimization process ID at the provider, or NULL if not supported or unknown * @param expiration until when is the KYC check valid diff --git a/src/util/secmod_cs.h b/src/util/secmod_cs.h @@ -14,7 +14,7 @@ TALER; see the file COPYING. If not, see <http://www.gnu.org/licenses/> */ /** - * @file util/taler-exchange-secmod-cs.h + * @file util/secmod_cs.h * @brief IPC messages for the CS crypto helper. * @author Christian Grothoff * @author Gian Demarmels diff --git a/src/util/secmod_eddsa.h b/src/util/secmod_eddsa.h @@ -14,7 +14,7 @@ TALER; see the file COPYING. If not, see <http://www.gnu.org/licenses/> */ /** - * @file util/taler-exchange-secmod-eddsa.h + * @file util/secmod_eddsa.h * @brief IPC messages for the EDDSA crypto helper. * @author Christian Grothoff */ diff --git a/src/util/secmod_rsa.c b/src/util/secmod_rsa.c @@ -14,7 +14,7 @@ TALER; see the file COPYING. If not, see <http://www.gnu.org/licenses/> */ /** - * @file util/taler-exchange-secmod-rsa.c + * @file util/secmod_rsa.c * @brief Standalone process to perform private key RSA operations * @author Christian Grothoff * @@ -1925,14 +1925,6 @@ do_shutdown (void *cls) } -/** - * Main function that will be run under the GNUnet scheduler. - * - * @param cls closure - * @param args remaining command-line arguments - * @param cfgfile name of the configuration file used (for saving, can be NULL!) - * @param cfg configuration - */ void TALER_SECMOD_rsa_run (void *cls, char *const *args, diff --git a/src/util/secmod_rsa.h b/src/util/secmod_rsa.h @@ -14,7 +14,7 @@ TALER; see the file COPYING. If not, see <http://www.gnu.org/licenses/> */ /** - * @file util/taler-exchange-secmod-rsa.h + * @file util/secmod_rsa.h * @brief IPC messages for the RSA crypto helper. * @author Christian Grothoff */