aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2024-12-02 08:40:43 +0100
committerChristian Grothoff <christian@grothoff.org>2024-12-02 08:40:43 +0100
commitc5ca2c7fa8634d51322e40f653b70868dd0a1371 (patch)
treefa5780b90192396ba16a7c59d635345bf9795e87
parent1fc05366655596f0db3b3040fdbee99cc83835cf (diff)
-fix doxygen issues
-rw-r--r--src/exchange/taler-exchange-aggregator.c3
-rw-r--r--src/exchange/taler-exchange-httpd_legitimization-measures-get.h2
-rw-r--r--src/include/taler_exchangedb_lib.h3
-rw-r--r--src/include/taler_kyclogic_lib.h6
-rw-r--r--src/kyclogic/taler-exchange-kyc-tester.c1
-rw-r--r--src/util/secmod_cs.h2
-rw-r--r--src/util/secmod_eddsa.h2
-rw-r--r--src/util/secmod_rsa.c10
-rw-r--r--src/util/secmod_rsa.h2
9 files changed, 12 insertions, 19 deletions
diff --git a/src/exchange/taler-exchange-aggregator.c b/src/exchange/taler-exchange-aggregator.c
index 79257449f..0e03634ca 100644
--- 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
index c47ea1941..073c68622 100644
--- 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
index 77f48b482..32a8e0e2e 100644
--- 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
index 5eea5469a..dbc6fe055 100644
--- 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
index f34192a21..793ce11d5 100644
--- 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
index 0321335da..4fdd9d788 100644
--- 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
index c05d90a6c..1d549c3e3 100644
--- 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
index db8ae9512..7d592f56a 100644
--- 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
index ffbceb48e..3d55a890c 100644
--- 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
*/