summaryrefslogtreecommitdiff
path: root/src/exchange
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2020-01-17 23:01:17 +0100
committerChristian Grothoff <christian@grothoff.org>2020-01-17 23:01:17 +0100
commitb322614eb212e8b35e38faf70e804a33b091bbf4 (patch)
tree3f89e85174a4ea15224846f60050bbe82cf4019e /src/exchange
parentcd1a784f3413543b83f368344d0d660c29aecda3 (diff)
downloadexchange-b322614eb212e8b35e38faf70e804a33b091bbf4.tar.gz
exchange-b322614eb212e8b35e38faf70e804a33b091bbf4.tar.bz2
exchange-b322614eb212e8b35e38faf70e804a33b091bbf4.zip
doxygen
Diffstat (limited to 'src/exchange')
-rw-r--r--src/exchange/taler-exchange-aggregator.c2
-rw-r--r--src/exchange/taler-exchange-httpd_db.c2
-rw-r--r--src/exchange/taler-exchange-httpd_keystate.c8
-rw-r--r--src/exchange/taler-exchange-httpd_keystate.h1
4 files changed, 7 insertions, 6 deletions
diff --git a/src/exchange/taler-exchange-aggregator.c b/src/exchange/taler-exchange-aggregator.c
index 338e979e4..e9973c518 100644
--- a/src/exchange/taler-exchange-aggregator.c
+++ b/src/exchange/taler-exchange-aggregator.c
@@ -337,7 +337,7 @@ advance_fees (struct WireAccount *wa,
/**
* Update wire transfer fee data structure in @a wp.
*
- * @param wp wire transfer fee data structure to update
+ * @param wa wire account data structure to update
* @param now timestamp to update fees to
* @param session DB session to use
* @return transaction status
diff --git a/src/exchange/taler-exchange-httpd_db.c b/src/exchange/taler-exchange-httpd_db.c
index bc6f1ca60..d82ca9175 100644
--- a/src/exchange/taler-exchange-httpd_db.c
+++ b/src/exchange/taler-exchange-httpd_db.c
@@ -82,7 +82,7 @@ TEH_DB_know_coin_transaction (void *cls,
*
* @param connection MHD connection to run @a cb for
* @param name name of the transaction (for debugging)
- * @param[out] set to MHD response code, if transaction failed
+ * @param[out] mhd_ret set to MHD response code, if transaction failed
* @param cb callback implementing transaction logic
* @param cb_cls closure for @a cb, must be read-only!
* @return #GNUNET_OK on success, #GNUNET_SYSERR on failure
diff --git a/src/exchange/taler-exchange-httpd_keystate.c b/src/exchange/taler-exchange-httpd_keystate.c
index 46c08e514..edb832dc3 100644
--- a/src/exchange/taler-exchange-httpd_keystate.c
+++ b/src/exchange/taler-exchange-httpd_keystate.c
@@ -955,7 +955,6 @@ sign_key_issue_to_json (const struct TALER_ExchangeSigningKeyValidityPS *ski,
* @param cls closure with the `struct ResponseFactoryContext *`
* @param filename name of the file the key came from
* @param ski the sign key issue
- * @param ski_sig signature over @a ski
* @return #GNUNET_OK to continue to iterate,
* #GNUNET_NO to stop iteration with no error,
* #GNUNET_SYSERR to abort iteration with error!
@@ -1589,7 +1588,7 @@ build_keys_response (const struct ResponseFactoryContext *rfc,
* This function checks if the @a denom_pub is already known to us,
* and if not adds it to our set.
*
- * @parma cls closure, a `struct ResponseFactoryContext *`
+ * @param cls closure, a `struct ResponseFactoryContext *`
* @param denom_pub public key of the denomination
* @param issue detailed information about the denomination (value, expiration times, fees)
*/
@@ -1899,6 +1898,7 @@ TEH_KS_release_ (const char *location,
* For every call to #TEH_KS_acquire(), a matching call
* to #TEH_KS_release() must be made.
*
+ * @param now for what timestamp should we acquire the key state
* @param location name of the function in which the lock is acquired
* @return the key state, NULL on error (usually pretty fatal)
*/
@@ -1964,8 +1964,8 @@ TEH_KS_acquire_ (struct GNUNET_TIME_Absolute now,
* @param key_state state to look in
* @param denom_pub_hash hash of denomination public key
* @param use purpose for which the key is being located
- * @param ec[out] set to the error code, in case the operation failed
- * @param hc[out] set to the HTTP status code to use
+ * @param[out] ec set to the error code, in case the operation failed
+ * @param[out] hc set to the HTTP status code to use
* @return the denomination key issue,
* or NULL if denom_pub could not be found (or is not valid at this time for the given @a use)
*/
diff --git a/src/exchange/taler-exchange-httpd_keystate.h b/src/exchange/taler-exchange-httpd_keystate.h
index 5d92af2b2..5a7afa2d5 100644
--- a/src/exchange/taler-exchange-httpd_keystate.h
+++ b/src/exchange/taler-exchange-httpd_keystate.h
@@ -42,6 +42,7 @@ struct TEH_KS_StateHandle;
* For every call to #TEH_KS_acquire(), a matching call
* to #TEH_KS_release() must be made.
*
+ * @param now for what timestamp should we acquire the key state
* @param location name of the function in which the lock is acquired
* @return the key state, NULL on error (usually pretty fatal)
*/