summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2015-10-05 10:39:17 +0200
committerChristian Grothoff <christian@grothoff.org>2015-10-05 10:39:17 +0200
commitdfb767a0954762063fcd3ad48e788211db288222 (patch)
tree64e29894a6db46eecec69462cb8e90dace9a4d41 /src
parent3b3af8a077f4ea67db47a516c9bae15564896f6b (diff)
downloadexchange-dfb767a0954762063fcd3ad48e788211db288222.tar.gz
exchange-dfb767a0954762063fcd3ad48e788211db288222.tar.bz2
exchange-dfb767a0954762063fcd3ad48e788211db288222.zip
doxygen fixes
Diffstat (limited to 'src')
-rw-r--r--src/mint-lib/mint_api_wire.c22
-rw-r--r--src/mint/taler-mint-httpd_db.c12
2 files changed, 18 insertions, 16 deletions
diff --git a/src/mint-lib/mint_api_wire.c b/src/mint-lib/mint_api_wire.c
index 81506961b..2af9e6ed0 100644
--- a/src/mint-lib/mint_api_wire.c
+++ b/src/mint-lib/mint_api_wire.c
@@ -595,24 +595,24 @@ TALER_MINT_wire (struct TALER_MINT_Handle *mint,
* Cancel a wire information request. This function cannot be used
* on a request handle if a response is already served for it.
*
- * @param wire the wire information request handle
+ * @param wh the wire information request handle
*/
void
-TALER_MINT_wire_cancel (struct TALER_MINT_WireHandle *wire)
+TALER_MINT_wire_cancel (struct TALER_MINT_WireHandle *wh)
{
- if (NULL != wire->job)
+ if (NULL != wh->job)
{
- MAC_job_cancel (wire->job);
- wire->job = NULL;
+ MAC_job_cancel (wh->job);
+ wh->job = NULL;
}
- if (NULL != wire->methods)
+ if (NULL != wh->methods)
{
- json_decref (wire->methods);
- wire->methods = NULL;
+ json_decref (wh->methods);
+ wh->methods = NULL;
}
- GNUNET_free_non_null (wire->db.buf);
- GNUNET_free (wire->url);
- GNUNET_free (wire);
+ GNUNET_free_non_null (wh->db.buf);
+ GNUNET_free (wh->url);
+ GNUNET_free (wh);
}
diff --git a/src/mint/taler-mint-httpd_db.c b/src/mint/taler-mint-httpd_db.c
index 247a84e9d..2d8af2759 100644
--- a/src/mint/taler-mint-httpd_db.c
+++ b/src/mint/taler-mint-httpd_db.c
@@ -302,6 +302,7 @@ TMH_DB_execute_reserve_status (struct MHD_Connection *connection,
*
* @param connection request we are handling
* @param session database session we are using
+ * @param key_state key state to lookup denomination pubs
* @param reserve reserve to withdraw from
* @param denomination_pub public key of the denomination requested
* @param dki denomination to withdraw
@@ -1142,11 +1143,12 @@ refresh_mint_coin (struct MHD_Connection *connection,
* @param session database session
* @param session_hash hash identifying the refresh session
* @param refresh_session information about the refresh operation we are doing
+ * @param melts array of "num_oldcoins" with information about melted coins
* @param denom_pubs array of "num_newcoins" denomination keys for the new coins
- * @param ev_sigs[out] where to store generated signatures for the new coins,
+ * @param[out] ev_sigs where to store generated signatures for the new coins,
* array of length "num_newcoins", memory released by the
* caller
- * @param commit_coins[out] array of length "num_newcoins" to be used for
+ * @param[out] commit_coins array of length "num_newcoins" to be used for
* information about the new coins from the commitment.
* @return MHD result code
*/
@@ -1154,9 +1156,9 @@ static int
execute_refresh_reveal_transaction (struct MHD_Connection *connection,
struct TALER_MINTDB_Session *session,
const struct GNUNET_HashCode *session_hash,
- struct TALER_MINTDB_RefreshSession *refresh_session,
- struct TALER_MINTDB_RefreshMelt *melts,
- struct TALER_DenominationPublicKey *denom_pubs,
+ const struct TALER_MINTDB_RefreshSession *refresh_session,
+ const struct TALER_MINTDB_RefreshMelt *melts,
+ const struct TALER_DenominationPublicKey *denom_pubs,
struct TALER_DenominationSignature *ev_sigs,
struct TALER_MINTDB_RefreshCommitCoin *commit_coins)
{